summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2018-05-12 17:30:52 +0200
committerAaron Bauman <bman@gentoo.org>2018-05-13 15:18:12 -0400
commitdf23b67ba6ff2c9ff58144faec8d093a1d3c618e (patch)
tree85200a9724347abaa6e7fe49048a7340fdab2c98 /x11-libs
parentx11-libs/libXft: remove unused patch(es) (diff)
downloadgentoo-df23b67ba6ff2c9ff58144faec8d093a1d3c618e.tar.gz
gentoo-df23b67ba6ff2c9ff58144faec8d093a1d3c618e.tar.bz2
gentoo-df23b67ba6ff2c9ff58144faec8d093a1d3c618e.zip
x11-libs/libXaw: remove unused patch(es)
Diffstat (limited to 'x11-libs')
-rw-r--r--x11-libs/libXaw/files/libXaw-1.0.12-format-security.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/x11-libs/libXaw/files/libXaw-1.0.12-format-security.patch b/x11-libs/libXaw/files/libXaw-1.0.12-format-security.patch
deleted file mode 100644
index dfc2e23672f9..000000000000
--- a/x11-libs/libXaw/files/libXaw-1.0.12-format-security.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From ec7d7c303385a6bdb0833a5aaae96be697cca7ab Mon Sep 17 00:00:00 2001
-From: Adam Jackson <ajax@redhat.com>
-Date: Thu, 21 Nov 2013 11:43:55 -0500
-Subject: Fix build with gcc -Werror=format-security
-
-DisplayList.c:290:4: error: format not a string literal and no format
-arguments [-Werror=format-security]
-
-Signed-off-by: Adam Jackson <ajax@redhat.com>
-
-diff --git a/src/DisplayList.c b/src/DisplayList.c
-index 3e99df4..0581bf7 100644
---- a/src/DisplayList.c
-+++ b/src/DisplayList.c
-@@ -287,7 +287,7 @@ _XawDisplayList *XawCreateDisplayList(String string, Screen *screen,
- }
- if (fp)
- {
-- snprintf(cname, fp - fname + 1, fname);
-+ snprintf(cname, fp - fname + 1, "%s", fname);
- memmove(fname, fp + 1, strlen(fp));
- lc = cname[0] ? XawGetDisplayListClass(cname) : xlibc;
- if (!lc)
---
-cgit v0.10.2
-