aboutsummaryrefslogtreecommitdiffstats
path: root/package/boot/kexec-tools/patches/100-format_string_fix.patch
diff options
context:
space:
mode:
authorPhilip Prindeville <philipp@redfish-solutions.com>2018-02-02 18:50:24 -0700
committerJohn Crispin <john@phrozen.org>2018-02-11 16:10:51 +0100
commit83d99924fa7f461b4df6d52379d702d5a49bc564 (patch)
tree0ff85cc6a9e320da63ddf6781e187d7c8e8505c4 /package/boot/kexec-tools/patches/100-format_string_fix.patch
parentd59cc79e00e74184d42aec8743d57441c6b734bc (diff)
downloadupstream-83d99924fa7f461b4df6d52379d702d5a49bc564.tar.gz
upstream-83d99924fa7f461b4df6d52379d702d5a49bc564.tar.bz2
upstream-83d99924fa7f461b4df6d52379d702d5a49bc564.zip
kexec-tools: bump version to 2.0.16
All patches have been integrated upstream. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
Diffstat (limited to 'package/boot/kexec-tools/patches/100-format_string_fix.patch')
-rw-r--r--package/boot/kexec-tools/patches/100-format_string_fix.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/package/boot/kexec-tools/patches/100-format_string_fix.patch b/package/boot/kexec-tools/patches/100-format_string_fix.patch
deleted file mode 100644
index 601121bcc0..0000000000
--- a/package/boot/kexec-tools/patches/100-format_string_fix.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/kexec/arch/i386/kexec-elf-x86.c
-+++ b/kexec/arch/i386/kexec-elf-x86.c
-@@ -296,6 +296,6 @@ out:
- free(command_line);
- free(modified_cmdline);
- if (error_msg)
-- die(error_msg);
-+ die("%s", error_msg);
- return result;
- }
---- a/kexec/arch/x86_64/kexec-elf-x86_64.c
-+++ b/kexec/arch/x86_64/kexec-elf-x86_64.c
-@@ -276,6 +276,6 @@ out:
- free(command_line);
- free(modified_cmdline);
- if (error_msg)
-- die(error_msg);
-+ die("%s", error_msg);
- return result;
- }