diff options
author | Felix Fietkau <nbd@nbd.name> | 2017-05-09 15:20:23 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2017-05-25 19:01:07 +0200 |
commit | 3c7a99ea90fef77455cf79ddfc3fd737961843e8 (patch) | |
tree | bafef46c3f8eaba10ce4366e7361d24b7a24eefd /package/utils/xfsprogs/patches/160-format-security.patch | |
parent | d7a3120cdcc1aeed5a95636803d250e35ba8706e (diff) | |
download | upstream-3c7a99ea90fef77455cf79ddfc3fd737961843e8.tar.gz upstream-3c7a99ea90fef77455cf79ddfc3fd737961843e8.tar.bz2 upstream-3c7a99ea90fef77455cf79ddfc3fd737961843e8.zip |
xfsprogs: update to 4.11.0
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'package/utils/xfsprogs/patches/160-format-security.patch')
-rw-r--r-- | package/utils/xfsprogs/patches/160-format-security.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/package/utils/xfsprogs/patches/160-format-security.patch b/package/utils/xfsprogs/patches/160-format-security.patch deleted file mode 100644 index 5ae627d4a1..0000000000 --- a/package/utils/xfsprogs/patches/160-format-security.patch +++ /dev/null @@ -1,29 +0,0 @@ -From: Ben Myers <bpm@sgi.com> -Date: Fri, 1 Feb 2013 21:50:22 +0000 (-0600) -Subject: xfsprogs: fix warning in libxcmd/input.c -X-Git-Tag: v3.1.11~25 -X-Git-Url: http://oss.sgi.com/cgi-bin/gitweb.cgi?p=xfs%2Fcmds%2Fxfsprogs.git;a=commitdiff_plain;h=50a3aa8977821ad072f3aa5b63645827f9b8ca1d - -xfsprogs: fix warning in libxcmd/input.c - -Fix an error when building with -Werror=format-security. - -input.c: In function 'fetchline': -input.c:91:2: error: format not a string literal and no format arguments [-Werror=format-security] - -Signed-off-by: Ben Myers <bpm@sgi.com> -Reported by: Arkadiusz MiĆkiewicz <arekm@maven.pl> -Reviewed-by: Mark Tinguely <tinguely@sgi.com> ---- - ---- a/libxcmd/input.c -+++ b/libxcmd/input.c -@@ -88,7 +88,7 @@ fetchline(void) - - if (!line) - return NULL; -- printf(get_prompt()); -+ printf("%s", get_prompt()); - fflush(stdout); - if (!fgets(line, MAXREADLINESZ, stdin)) { - free(line); |