From: Bradley Nicholes Date: Tue, 18 Jun 2002 23:34:31 +0000 (+0000) Subject: Fix the -f parameter so that it requires a follow-up argument again. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=16779ff8ed7f3cb33394282573547cf28243008c;p=thirdparty%2Fapache%2Fhttpd.git Fix the -f parameter so that it requires a follow-up argument again. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@95790 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/main/http_main.c b/src/main/http_main.c index afadb70921b..85591010985 100644 --- a/src/main/http_main.c +++ b/src/main/http_main.c @@ -7260,7 +7260,7 @@ int REALMAIN(int argc, char *argv[]) while ((c = getopt(argc, argv, "D:C:c:Xd:f:vVlLz:Z:wiuStThk:n:W:")) != -1) { #else /* !WIN32 */ - while ((c = getopt(argc, argv, "D:C:c:Xd:fF:vVlLesStTh")) != -1) { + while ((c = getopt(argc, argv, "D:C:c:Xd:Ff:vVlLesStTh")) != -1) { #endif char **new; switch (c) {