diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-02-20 14:09:26 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-02-20 14:09:26 +0000 |
commit | c0211133f1010adc62c3c29dc599072942f9ad75 (patch) | |
tree | f131d5d0af5e2d443e75d4a5f1f9aa739345239b /app-text/rman/files | |
parent | better Description (diff) | |
download | gentoo-2-c0211133f1010adc62c3c29dc599072942f9ad75.tar.gz gentoo-2-c0211133f1010adc62c3c29dc599072942f9ad75.tar.bz2 gentoo-2-c0211133f1010adc62c3c29dc599072942f9ad75.zip |
Bump to EAPI=5 and fix format-security problems, #521006
(Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'app-text/rman/files')
-rw-r--r-- | app-text/rman/files/rman-3.2-format-security.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app-text/rman/files/rman-3.2-format-security.patch b/app-text/rman/files/rman-3.2-format-security.patch new file mode 100644 index 000000000000..77070026bdb9 --- /dev/null +++ b/app-text/rman/files/rman-3.2-format-security.patch @@ -0,0 +1,16 @@ + rman.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/rman.c b/rman.c +index d09e547..e5fc88d 100644 +--- a/rman.c ++++ b/rman.c +@@ -1372,7 +1372,7 @@ HTML(enum command cmd) { + break; + case BEGINSECTION: break; + case ENDSECTION: +- if (sectheadid==NAME && message!=NULL) printf(message); ++ if (sectheadid==NAME && message!=NULL) printf("%s", message); + break; + case BEGINSUBSECTION: break; + case ENDSUBSECTION: break; |