Remove option letter from getopt string, since it does not

have a case handler below. From aaron@openbsd.
This commit is contained in:
wiz 2004-05-13 00:18:46 +00:00
parent 15a5f3876a
commit 0a1db66278
2 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: main.c,v 1.17 2004/04/21 01:05:33 christos Exp $ */ /* $NetBSD: main.c,v 1.18 2004/05/13 00:18:46 wiz Exp $ */
/* /*
* Copyright (c) 1980, 1986, 1993 * Copyright (c) 1980, 1986, 1993
@ -68,7 +68,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1986, 1993\n\
#if 0 #if 0
static char sccsid[] = "@(#)main.c 8.2 (Berkeley) 1/23/94"; static char sccsid[] = "@(#)main.c 8.2 (Berkeley) 1/23/94";
#else #else
__RCSID("$NetBSD: main.c,v 1.17 2004/04/21 01:05:33 christos Exp $"); __RCSID("$NetBSD: main.c,v 1.18 2004/05/13 00:18:46 wiz Exp $");
#endif #endif
#endif /* not lint */ #endif /* not lint */
@ -108,7 +108,7 @@ main(argc, argv)
sync(); sync();
skipclean = 1; skipclean = 1;
while ((ch = getopt(argc, argv, "b:c:dfm:npqy")) != -1) { while ((ch = getopt(argc, argv, "b:dfm:npqy")) != -1) {
switch (ch) { switch (ch) {
case 'b': case 'b':
skipclean = 0; skipclean = 0;

View File

@ -1,4 +1,4 @@
/* $NetBSD: main.c,v 1.36 2004/03/27 20:50:43 christos Exp $ */ /* $NetBSD: main.c,v 1.37 2004/05/13 00:21:47 wiz Exp $ */
/* /*
* Copyright (c) 1983, 1988, 1993 * Copyright (c) 1983, 1988, 1993
@ -46,7 +46,7 @@ __COPYRIGHT("@(#) Copyright (c) 1983, 1988, 1993\n"
"The Regents of the University of California." "The Regents of the University of California."
" All rights reserved.\n"); " All rights reserved.\n");
#ifdef __NetBSD__ #ifdef __NetBSD__
__RCSID("$NetBSD: main.c,v 1.36 2004/03/27 20:50:43 christos Exp $"); __RCSID("$NetBSD: main.c,v 1.37 2004/05/13 00:21:47 wiz Exp $");
#elif defined(__FreeBSD__) #elif defined(__FreeBSD__)
__RCSID("$FreeBSD$"); __RCSID("$FreeBSD$");
#else #else
@ -140,7 +140,7 @@ main(int argc,
(void)gethostname(myname, sizeof(myname) - 1); (void)gethostname(myname, sizeof(myname) - 1);
(void)gethost(myname, &myaddr); (void)gethost(myname, &myaddr);
while ((n = getopt(argc, argv, "sqdghmpAtvT:F:P:")) != -1) { while ((n = getopt(argc, argv, "sqdghmAtvT:F:P:")) != -1) {
switch (n) { switch (n) {
case 's': case 's':
supplier = 1; supplier = 1;