diff options
author | Patrick Kursawe <phosphan@gentoo.org> | 2005-10-04 09:32:49 +0000 |
---|---|---|
committer | Patrick Kursawe <phosphan@gentoo.org> | 2005-10-04 09:32:49 +0000 |
commit | ebc64c141f464c0b2fff3c2b3d013f5b8af349e2 (patch) | |
tree | 5303f78c3774396eecb218b81f05451d13b53fc0 /net-ftp/weex/files | |
parent | Add dependency on glib. (diff) | |
download | gentoo-2-ebc64c141f464c0b2fff3c2b3d013f5b8af349e2.tar.gz gentoo-2-ebc64c141f464c0b2fff3c2b3d013f5b8af349e2.tar.bz2 gentoo-2-ebc64c141f464c0b2fff3c2b3d013f5b8af349e2.zip |
Security fix, see bug #107849
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'net-ftp/weex/files')
-rw-r--r-- | net-ftp/weex/files/digest-weex-2.6.1.5-r1 (renamed from net-ftp/weex/files/digest-weex-2.6.1.5) | 0 | ||||
-rw-r--r-- | net-ftp/weex/files/formatstring.patch | 11 |
2 files changed, 11 insertions, 0 deletions
diff --git a/net-ftp/weex/files/digest-weex-2.6.1.5 b/net-ftp/weex/files/digest-weex-2.6.1.5-r1 index f15076102574..f15076102574 100644 --- a/net-ftp/weex/files/digest-weex-2.6.1.5 +++ b/net-ftp/weex/files/digest-weex-2.6.1.5-r1 diff --git a/net-ftp/weex/files/formatstring.patch b/net-ftp/weex/files/formatstring.patch new file mode 100644 index 000000000000..06ad28b88365 --- /dev/null +++ b/net-ftp/weex/files/formatstring.patch @@ -0,0 +1,11 @@ +--- src/log.c.old 2005-10-02 03:49:34.495603240 +0200 ++++ src/log.c 2005-10-02 03:50:18.064979688 +0200 +@@ -183,7 +183,7 @@ void log_flush(void) + + fp=log_open(); + for(i=0;i<max_log;i++){ +- fprintf(fp,log_str[i]); ++ fprintf(fp,"%s",log_str[i]); + free(log_str[i]); + } + free(log_str); |