diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-02 12:41:11 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-02 12:41:11 +0000 |
commit | 02da6a295f64654852742035477e7a797e371f25 (patch) | |
tree | e92e6dd21f5a8dce42cd354ad2363f3f25e82b0c /bin/pax | |
parent | 30de0712e34cf6ebb1f1d8fd814131cbdb4ed1ae (diff) |
zap getopt() case of -?, come on, it is the default!
Diffstat (limited to 'bin/pax')
-rw-r--r-- | bin/pax/options.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/pax/options.c b/bin/pax/options.c index 25d4fb26478..05cdb90a544 100644 --- a/bin/pax/options.c +++ b/bin/pax/options.c @@ -1,4 +1,4 @@ -/* $OpenBSD: options.c,v 1.6 1996/06/23 14:20:36 deraadt Exp $ */ +/* $OpenBSD: options.c,v 1.7 1996/08/02 12:41:01 deraadt Exp $ */ /* $NetBSD: options.c,v 1.6 1996/03/26 23:54:18 mrg Exp $ */ /*- @@ -42,7 +42,7 @@ #if 0 static char sccsid[] = "@(#)options.c 8.2 (Berkeley) 4/18/94"; #else -static char rcsid[] = "$OpenBSD: options.c,v 1.6 1996/06/23 14:20:36 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: options.c,v 1.7 1996/08/02 12:41:01 deraadt Exp $"; #endif #endif /* not lint */ @@ -508,7 +508,6 @@ pax_options(argc, argv) Zflag = 1; flg |= CZF; break; - case '?': default: pax_usage(); break; |