diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2004-04-07 14:09:36 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2004-04-07 14:09:36 +0000 |
commit | eef066e143e1ba9826b36b7e5b48c9851784f7a2 (patch) | |
tree | 4e08e5352af123e6189b9ebc0e78237b9ac537cf /games/backgammon | |
parent | d62260efbb210817cdf2745812dff843031c5840 (diff) |
Remove those option letters from the getopt string which do not have a case
handler below. millert@ ok
Diffstat (limited to 'games/backgammon')
-rw-r--r-- | games/backgammon/common_source/subs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/backgammon/common_source/subs.c b/games/backgammon/common_source/subs.c index 6df843c4c1a..8f78fcc5182 100644 --- a/games/backgammon/common_source/subs.c +++ b/games/backgammon/common_source/subs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: subs.c,v 1.12 2003/06/03 03:01:38 millert Exp $ */ +/* $OpenBSD: subs.c,v 1.13 2004/04/07 14:09:35 aaron Exp $ */ /* * Copyright (c) 1980, 1993 @@ -33,7 +33,7 @@ #if 0 static char sccsid[] = "@(#)subs.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$OpenBSD: subs.c,v 1.12 2003/06/03 03:01:38 millert Exp $"; +static char rcsid[] = "$OpenBSD: subs.c,v 1.13 2004/04/07 14:09:35 aaron Exp $"; #endif #endif /* not lint */ @@ -210,7 +210,7 @@ getarg(argc,argv) int ch; int j; - while ((ch = getopt(argc, argv, "bhnp:rs:t:w")) != -1) + while ((ch = getopt(argc, argv, "bhnrs:w")) != -1) switch((char)ch) { case 'n': /* don't ask if rules or instructions needed */ if (rflag) |