aboutsummaryrefslogtreecommitdiffstats
path: root/package/boot/kexec-tools/patches/100-format_string_fix.patch
diff options
context:
space:
mode:
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;
- }