aboutsummaryrefslogtreecommitdiff
path: root/ftp/pure-ftpd/files
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2004-07-18 12:01:20 +0000
committerPav Lucistnik <pav@FreeBSD.org>2004-07-18 12:01:20 +0000
commite88d4982c1611cfb4d9b38879d61caf6445eef36 (patch)
treebd8eb54dd5a559d3d8a1aedbbf13a3746a4f4a9b /ftp/pure-ftpd/files
parent5dc7c6ada775abecabae44cf03c2d13314b3f6d2 (diff)
Notes
Diffstat (limited to 'ftp/pure-ftpd/files')
-rw-r--r--ftp/pure-ftpd/files/patch-src_bsd-getopt_long.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/ftp/pure-ftpd/files/patch-src_bsd-getopt_long.c b/ftp/pure-ftpd/files/patch-src_bsd-getopt_long.c
deleted file mode 100644
index b886953e2437..000000000000
--- a/ftp/pure-ftpd/files/patch-src_bsd-getopt_long.c
+++ /dev/null
@@ -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;