diff options
author | lukem <lukem@pkgsrc.org> | 2005-06-10 05:10:02 +0000 |
---|---|---|
committer | lukem <lukem@pkgsrc.org> | 2005-06-10 05:10:02 +0000 |
commit | 1524f1105e30a06b4879b8f1872634504e2a72e8 (patch) | |
tree | 639e1fdb3f80fd45d142f92c7569cd7b6bb72025 /net/tnftp | |
parent | 84c028ec5eb6984ce185aead606f4f858f8ffed2 (diff) | |
download | pkgsrc-1524f1105e30a06b4879b8f1872634504e2a72e8.tar.gz |
Update to tnftp 20050610.
Notable changes (see files/ChangeLog for full details):
* Convert to use getline() instead of fgets() whenever reading user input to
ensure that an overly long input line doesn't leave excess characters for
the next input operation to accidentally use as input.
Should fix PR 23953.
* Improve method used in fileindir() to determine if `file' is in or under
`dir': realpath(3) on non-NetBSD systems may fail if the target filename
doesn't exist, so instead use realpath(3) on the parent directory of `file'.
(The previous code was over-aggressive in preventing transfers on systems
with a realpath(3) that had different semantics to NetBSD.)
* Various portability fixes.
Diffstat (limited to 'net/tnftp')
-rw-r--r-- | net/tnftp/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net/tnftp/Makefile b/net/tnftp/Makefile index a19dff9c8b5..4dcc1cbbdb8 100644 --- a/net/tnftp/Makefile +++ b/net/tnftp/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.14 2005/05/14 06:06:26 lukem Exp $ +# $NetBSD: Makefile,v 1.15 2005/06/10 05:10:02 lukem Exp $ # -DISTNAME= tnftp-20050514 -PKGREVISION= 1 +DISTNAME= tnftp-20050610 SVR4_PKGNAME= tnftp CATEGORIES= net MASTER_SITES= # empty |