diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2018-11-09 18:57:40 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-11-10 09:43:12 +0100 |
commit | 6a5e9a7ac6e20f8cb2251b61b09b54d51bedfa82 (patch) | |
tree | 1e0ed80f02bb034d47dfc5ac1bf6128c5d9503b6 /package/libiscsi/0002-avoid-truncation-when-logging-message-that-includes-target-name.patch | |
parent | 956f05595f7fc3d286c4470628a1c6448ab437b0 (diff) | |
download | buildroot-6a5e9a7ac6e20f8cb2251b61b09b54d51bedfa82.tar.gz buildroot-6a5e9a7ac6e20f8cb2251b61b09b54d51bedfa82.zip |
libiscsi: fix build failures due to warnings
Retrieve two upstream patches to fix build failures due to warnings
Fixes:
- http://autobuild.buildroot.org/results/7ec1e1cc060bbdaaf758c0d55a053247b731e792
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/libiscsi/0002-avoid-truncation-when-logging-message-that-includes-target-name.patch')
-rw-r--r-- | package/libiscsi/0002-avoid-truncation-when-logging-message-that-includes-target-name.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/package/libiscsi/0002-avoid-truncation-when-logging-message-that-includes-target-name.patch b/package/libiscsi/0002-avoid-truncation-when-logging-message-that-includes-target-name.patch new file mode 100644 index 0000000000..1334a8352c --- /dev/null +++ b/package/libiscsi/0002-avoid-truncation-when-logging-message-that-includes-target-name.patch @@ -0,0 +1,29 @@ +From bffafc1c3003c2ee05d28eaa345e5854bc36014d Mon Sep 17 00:00:00 2001 +From: Paolo Bonzini <pbonzini@redhat.com> +Date: Mon, 1 Oct 2018 14:16:14 +0200 +Subject: [PATCH] avoid truncation when logging message that includes target + name + +Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> +[Retrieved from: +https://github.com/sahlberg/libiscsi/commit/bffafc1c3003c2ee05d28eaa345e5854bc36014d] +--- + lib/logging.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/lib/logging.c b/lib/logging.c +index be518fc5..61c74407 100644 +--- a/lib/logging.c ++++ b/lib/logging.c +@@ -73,9 +73,9 @@ iscsi_log_message(struct iscsi_context *iscsi, int level, const char *format, .. + } + + if (iscsi->target_name[0]) { +- static char message2[1024]; ++ static char message2[1282]; + +- snprintf(message2, 1024, "%s [%s]", message, iscsi->target_name); ++ snprintf(message2, 1282, "%s [%s]", message, iscsi->target_name); + iscsi->log_fn(level, message2); + } + else |