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 /libexec | |
parent | d62260efbb210817cdf2745812dff843031c5840 (diff) |
Remove those option letters from the getopt string which do not have a case
handler below. millert@ ok
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/identd/identd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/identd/identd.c b/libexec/identd/identd.c index 100da895690..0a062143cb9 100644 --- a/libexec/identd/identd.c +++ b/libexec/identd/identd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: identd.c,v 1.36 2003/07/29 18:39:23 deraadt Exp $ */ +/* $OpenBSD: identd.c,v 1.37 2004/04/07 14:09:35 aaron Exp $ */ /* * This program is in the public domain and may be used freely by anyone @@ -176,7 +176,7 @@ main(int argc, char *argv[]) /* * Parse the command line arguments */ - while ((ch = getopt(argc, argv, "hHbwit:p:a:u:g:c:r:loenvdmNU")) != -1) { + while ((ch = getopt(argc, argv, "hHbwit:p:a:u:g:c:loenvdmNU")) != -1) { switch (ch) { case 'h': token_flag = 1; |