diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2003-01-02 08:29:24 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2003-01-02 08:29:24 +0000 |
commit | 4d96268805b755692a5da5ab6f5bdf87572e7bcd (patch) | |
tree | 65cca3d9af68bd2bd20e6d13cab9561d2c58b35d /devel/apr0/files/patch-apr-misc-unix-getopt.c | |
parent | upgrade to 1.2 (diff) |
upgrade to 0.9.1
PR: 46390
Submitted by: Craig Rodrigues <rodrigc@attbi.com> (new maintainer)
Approved by: old maintainer
Diffstat (limited to 'devel/apr0/files/patch-apr-misc-unix-getopt.c')
-rw-r--r-- | devel/apr0/files/patch-apr-misc-unix-getopt.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/devel/apr0/files/patch-apr-misc-unix-getopt.c b/devel/apr0/files/patch-apr-misc-unix-getopt.c deleted file mode 100644 index 2634000a14cd..000000000000 --- a/devel/apr0/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; - |