From: wessels <> Date: Thu, 18 Apr 1996 01:26:40 +0000 (+0000) Subject: fix getopt call for -U X-Git-Tag: SQUID_3_0_PRE1~6118 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=044a826730d12a7f48fdbee44addb47f0f1b9986;p=thirdparty%2Fsquid.git fix getopt call for -U --- diff --git a/src/main.cc b/src/main.cc index f15c15ec19..ab9d8784d0 100644 --- a/src/main.cc +++ b/src/main.cc @@ -1,4 +1,4 @@ -/* $Id: main.cc,v 1.42 1996/04/17 17:45:13 wessels Exp $ */ +/* $Id: main.cc,v 1.43 1996/04/17 19:26:40 wessels Exp $ */ /* DEBUG: Section 1 main: startup and main loop */ @@ -52,7 +52,7 @@ static void mainParseOptions(argc, argv) extern char *optarg; int c; - while ((c = getopt(argc, argv, "vCDRVbsif:a:p:u:m:zh?")) != -1) { + while ((c = getopt(argc, argv, "vCDRVUbsif:a:p:u:m:zh?")) != -1) { switch (c) { case 'v': printf("Squid Cache: Version %s\n", version_string);