aboutsummaryrefslogtreecommitdiff
path: root/devel/apr2/files/patch-apr-misc-unix-getopt.c
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2003-01-16 05:08:57 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2003-01-16 05:08:57 +0000
commitdf3e7e93b8317ece24fbe7d0c9e4aa1ebb0feca0 (patch)
tree1d9ecedb74d255866c8e1e5df9db0f2739a8ba66 /devel/apr2/files/patch-apr-misc-unix-getopt.c
parentc31f9d6cf28e3aa831ff2390ee3ab6ea031dbc76 (diff)
Notes
Diffstat (limited to 'devel/apr2/files/patch-apr-misc-unix-getopt.c')
-rw-r--r--devel/apr2/files/patch-apr-misc-unix-getopt.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/devel/apr2/files/patch-apr-misc-unix-getopt.c b/devel/apr2/files/patch-apr-misc-unix-getopt.c
deleted file mode 100644
index 2634000a14cd..000000000000
--- a/devel/apr2/files/patch-apr-misc-unix-getopt.c
+++ /dev/null
@@ -1,15 +0,0 @@
---- apr/misc/unix/getopt.c.orig Thu Nov 29 06:19:51 2001
-+++ apr/misc/unix/getopt.c Sun Aug 11 11:29:01 2002
-@@ -237,10 +237,12 @@
- for (i = 0; ; i++) {
- if (opts[i].optch == 0) /* No match */
- return serr(os, "invalid option", p - 2, APR_BADCH);
-+ if (opts[i].name) {
- len = strlen(opts[i].name);
- if (strncmp(p, opts[i].name, len) == 0
- && (p[len] == '\0' || p[len] == '='))
- break;
-+ }
- }
- *optch = opts[i].optch;
-