summaryrefslogtreecommitdiff
path: root/debian/patches/0001-fix-fprintf-format.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/0001-fix-fprintf-format.patch')
-rw-r--r--debian/patches/0001-fix-fprintf-format.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/debian/patches/0001-fix-fprintf-format.patch b/debian/patches/0001-fix-fprintf-format.patch
deleted file mode 100644
index 24ec36a82..000000000
--- a/debian/patches/0001-fix-fprintf-format.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Description: Fix FTBFS with gcc 4.6
-Author: Laurent Bigonville <bigon@debian.org>
-Bug-Debian: http://bugs.debian.org/614486
-
---- a/src/libcharon/plugins/stroke/stroke_ca.c
-+++ b/src/libcharon/plugins/stroke/stroke_ca.c
-@@ -319,7 +319,7 @@
- {
- if (first)
- {
-- fprintf(out, label);
-+ fprintf(out, "%s", label);
- first = FALSE;
- }
- else