summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2007-01-21 18:52:54 +0000
committerMike Frysinger <vapier@gentoo.org>2007-01-21 18:52:54 +0000
commit1c95119551ba1af31e8763bfe31d72118386c27a (patch)
tree04601eb77bfe1a2bcfbf5636fdf722ad7afb5902 /net-ftp/ftpd/files/ftpd-0.17+ssl-0.3-overflowpatch.diff
parent+move net-ftp/ftpd net-ftp/netkit-ftpd (diff)
downloadhistorical-1c95119551ba1af31e8763bfe31d72118386c27a.tar.gz
historical-1c95119551ba1af31e8763bfe31d72118386c27a.tar.bz2
historical-1c95119551ba1af31e8763bfe31d72118386c27a.zip
renamed to netkit-ftpd
Diffstat (limited to 'net-ftp/ftpd/files/ftpd-0.17+ssl-0.3-overflowpatch.diff')
-rw-r--r--net-ftp/ftpd/files/ftpd-0.17+ssl-0.3-overflowpatch.diff14
1 files changed, 0 insertions, 14 deletions
diff --git a/net-ftp/ftpd/files/ftpd-0.17+ssl-0.3-overflowpatch.diff b/net-ftp/ftpd/files/ftpd-0.17+ssl-0.3-overflowpatch.diff
deleted file mode 100644
index 6290079a7062..000000000000
--- a/net-ftp/ftpd/files/ftpd-0.17+ssl-0.3-overflowpatch.diff
+++ /dev/null
@@ -1,14 +0,0 @@
---- linux-ftpd-0.17/ftpd/ftpd.c 2005-11-05 17:04:53.000000000 -0600
-+++ linux-ftpd-0.17-patched/ftpd/ftpd.c 2005-11-05 17:11:54.000000000 -0600
-@@ -2082,9 +2082,9 @@
- va_start(ap);
- #endif
- #ifdef USE_SSL
-- /* assemble the output into a buffer */
-+ /* assemble the output into a buffer, checking for length*/
- sprintf(outputbuf,"%d ",n);
-- vsprintf(outputbuf+strlen(outputbuf),fmt,ap);
-+ vsnprintf(outputbuf+strlen(outputbuf),2048-(strlen(outputbuf) + 3),fmt,ap);
- strcat(outputbuf,"\r\n");
-
- if (ssl_debug_flag)