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/csh | |
parent | 30de0712e34cf6ebb1f1d8fd814131cbdb4ed1ae (diff) |
zap getopt() case of -?, come on, it is the default!
Diffstat (limited to 'bin/csh')
-rw-r--r-- | bin/csh/printf.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/csh/printf.c b/bin/csh/printf.c index fdcd5b3c50d..80a4871b472 100644 --- a/bin/csh/printf.c +++ b/bin/csh/printf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: printf.c,v 1.2 1996/06/23 14:19:27 deraadt Exp $ */ +/* $OpenBSD: printf.c,v 1.3 1996/08/02 12:40:52 deraadt Exp $ */ /* $NetBSD: printf.c,v 1.6 1995/03/21 09:03:15 cgd Exp $ */ /* @@ -46,7 +46,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)printf.c 8.1 (Berkeley) 7/20/93"; #else -static char rcsid[] = "$OpenBSD: printf.c,v 1.2 1996/06/23 14:19:27 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: printf.c,v 1.3 1996/08/02 12:40:52 deraadt Exp $"; #endif #endif /* not lint */ @@ -117,7 +117,6 @@ main(argc, argv) while ((ch = getopt(argc, argv, "")) != EOF) switch (ch) { - case '?': default: usage(); return (1); |