summaryrefslogtreecommitdiff
path: root/net/tnftpd/patches
diff options
context:
space:
mode:
authorsalo <salo@pkgsrc.org>2007-03-01 14:01:21 +0000
committersalo <salo@pkgsrc.org>2007-03-01 14:01:21 +0000
commit887340e58797bc8dca5b7f74983db8d294faf3a4 (patch)
tree029ba4e1dfb7146fa10d893723a3caef856b9938 /net/tnftpd/patches
parentbfbcf666d61701cf0eeb360e0c13f821d47de3e2 (diff)
downloadpkgsrc-887340e58797bc8dca5b7f74983db8d294faf3a4.tar.gz
Update to version 20061217.
requested by <martin> Changes: 20061217: ========= - Portability fix: provide a replacement daemon(3) if necessary. 20061204: ========= - Fix buffer overflow in local version of glob(3). (already fixed in pkgsrc) - Implement -D to run as a stand-alone daemon. - Add ftpd.conf(5) options: hidesymlinks recvbufsize - Enforce account expiration, and support shadow password aging where appropriate. - Return 450 instead of 550 upon NLST error. - Portability fixes and improvements.
Diffstat (limited to 'net/tnftpd/patches')
-rw-r--r--net/tnftpd/patches/patch-aa15
1 files changed, 0 insertions, 15 deletions
diff --git a/net/tnftpd/patches/patch-aa b/net/tnftpd/patches/patch-aa
deleted file mode 100644
index 1fbddc2bac2..00000000000
--- a/net/tnftpd/patches/patch-aa
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-aa,v 1.3 2006/12/02 23:00:04 adrianp Exp $
-
---- libnetbsd/glob.c.orig 2003-12-15 12:18:43.000000000 +0000
-+++ libnetbsd/glob.c
-@@ -497,7 +497,9 @@ glob1(Char *pattern, glob_t *pglob, size
- * we save one character so that we can use ptr >= limit,
- * in the general case when we are appending non nul chars only.
- */
-- return(glob2(pathbuf, pathbuf, pathbuf + sizeof(pathbuf) - 1, pattern,
-+ return(glob2(pathbuf, pathbuf,
-+ pathbuf + (sizeof(pathbuf) / sizeof(*pathbuf)) - 1,
-+ pattern,
- pglob, limit));
- }
-