- Update to 1.0.20

Approved by:	maintainer
This commit is contained in:
Pav Lucistnik 2004-07-18 12:01:20 +00:00
parent 5dc7c6ada7
commit e88d4982c1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=113901
3 changed files with 3 additions and 25 deletions

View file

@ -6,8 +6,7 @@
#
PORTNAME= pure-ftpd
PORTVERSION= 1.0.19
PORTREVISION= 1
PORTVERSION= 1.0.20
CATEGORIES= ftp ipv6
MASTER_SITES= ftp://ftp.pureftpd.org/pub/pure-ftpd/releases/ \
ftp://ftp2.fr.pureftpd.org/pub/mirrors/ftp.fr.pureftpd.org/pub/pure-ftpd/releases/ \

View file

@ -1,2 +1,2 @@
MD5 (pure-ftpd-1.0.19.tar.bz2) = 1ff9e9215d3b1fdad36571e892a726d1
SIZE (pure-ftpd-1.0.19.tar.bz2) = 460292
MD5 (pure-ftpd-1.0.20.tar.bz2) = 99a2eb6076e8328c21dcb3c92fdde982
SIZE (pure-ftpd-1.0.20.tar.bz2) = 460050

View file

@ -1,21 +0,0 @@
--- src/bsd-getopt_long.c.orig Mon Jun 21 01:29:56 2004
+++ src/bsd-getopt_long.c Thu Jul 15 22:03:34 2004
@@ -462,16 +462,8 @@
fprintf(stderr, recargchar, optchar);
pure_optopt = optchar;
return BADARG;
- } else if (!(flags & FLAG_PERMUTE)) {
- /*
- * If permutation is disabled, we can accept an
- * optional arg separated by whitespace so long
- * as it does not start with a dash (-).
- */
- if (pure_optind + 1 < nargc && pure_optind + 1 > 0 &&
- *nargv[pure_optind + 1] != '-') {
- pure_optarg = nargv[++pure_optind];
- }
+ } else {
+ pure_optarg = nargv[++pure_optind];
}
}
pure_place = EMSG;