fdf0455ba4
- Remove systemctl enable calls, as this is now handled by Fedora presets per the guidelines - Remove initiator name generation, as this is now handled by an init service - Install ghost lockfile and dir to /run instead of /var - Rebased/fixed up patches - Fixed macros in comments and comments after macros - Merged service-file-tweaks.patch and improve-systemd-service-files-for-boot-session-handl.patch into unit-file-tweaks.patch Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1493296 Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1729740 Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1834509
45 lines
1.4 KiB
Diff
45 lines
1.4 KiB
Diff
From a37c8753f277c156bcd4b3e7596931e3de2e67d7 Mon Sep 17 00:00:00 2001
|
|
From: rpm-build <rpm-build>
|
|
Date: Tue, 11 Aug 2020 21:00:29 +0200
|
|
Subject: [PATCH] iscsi_if.h replace zero-length array with flexible-array
|
|
member
|
|
|
|
---
|
|
include/iscsi_if.h | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/include/iscsi_if.h b/include/iscsi_if.h
|
|
index 5a1c614..e8cee0d 100644
|
|
--- a/include/iscsi_if.h
|
|
+++ b/include/iscsi_if.h
|
|
@@ -337,7 +337,7 @@ enum iscsi_param_type {
|
|
struct iscsi_param_info {
|
|
uint32_t len; /* Actual length of the param value */
|
|
uint16_t param; /* iscsi param */
|
|
- uint8_t value[0]; /* length sized value follows */
|
|
+ uint8_t value[]; /* length sized value follows */
|
|
} __attribute__((__packed__));
|
|
|
|
struct iscsi_iface_param_info {
|
|
@@ -346,7 +346,7 @@ struct iscsi_iface_param_info {
|
|
uint16_t param; /* iscsi param value */
|
|
uint8_t iface_type; /* IPv4 or IPv6 */
|
|
uint8_t param_type; /* iscsi_param_type */
|
|
- uint8_t value[0]; /* length sized value follows */
|
|
+ uint8_t value[]; /* length sized value follows */
|
|
} __attribute__((__packed__));
|
|
|
|
/*
|
|
@@ -723,7 +723,7 @@ enum iscsi_flashnode_param {
|
|
struct iscsi_flashnode_param_info {
|
|
uint32_t len; /* Actual length of the param */
|
|
uint16_t param; /* iscsi param value */
|
|
- uint8_t value[0]; /* length sized value follows */
|
|
+ uint8_t value[]; /* length sized value follows */
|
|
} __attribute__((__packed__));
|
|
|
|
enum iscsi_discovery_parent_type {
|
|
--
|
|
2.26.2
|
|
|