diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2000-12-24 11:35:43 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2000-12-24 11:35:43 +0000 |
commit | 1f47f1daa5093ecb1c174a57bc427d3603a71612 (patch) | |
tree | 48c5fabf96f24152d64b1bf2fbb346b4adde330e /usr.bin/cdio | |
parent | f9dbcefae295d6dcc3f0687612e50bd89a34b20d (diff) |
Get rid of undocumented -h option.
Diffstat (limited to 'usr.bin/cdio')
-rw-r--r-- | usr.bin/cdio/cdio.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/cdio/cdio.c b/usr.bin/cdio/cdio.c index 77ebc207280..36541f48609 100644 --- a/usr.bin/cdio/cdio.c +++ b/usr.bin/cdio/cdio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cdio.c,v 1.14 2000/12/24 11:34:10 aaron Exp $ */ +/* $OpenBSD: cdio.c,v 1.15 2000/12/24 11:35:42 aaron Exp $ */ /* * Compact Disc Control Utility by Serge V. Vakulenko <vak@cronyx.ru>. * Based on the non-X based CD player by Jean-Marc Zucconi and @@ -172,7 +172,7 @@ int main (argc, argv) cdname = getenv ("CDROM"); for (;;) { - switch (getopt (argc, argv, "svhf:")) { + switch (getopt (argc, argv, "svf:")) { case EOF: break; case 's': @@ -184,7 +184,6 @@ int main (argc, argv) case 'f': cdname = optarg; continue; - case 'h': default: usage (); } |