Module Name: src
Committed By: sevan
Date: Sat Jul 25 16:17:01 UTC 2015
Modified Files:
src/bin/cat: cat.c
Log Message:
Drop the case '?' which is defined after case 'default'.
case 'default' statement introduced in the last commit to cat.c in the CSRG
archive.
Obtained from OpenBSD bin/cat/cat.c r1.3.
To generate a diff of this commit:
cvs rdiff -u -r1.54 -r1.55 src/bin/cat/cat.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/bin/cat/cat.c
diff -u src/bin/cat/cat.c:1.54 src/bin/cat/cat.c:1.55
--- src/bin/cat/cat.c:1.54 Sun Dec 8 08:32:13 2013
+++ src/bin/cat/cat.c Sat Jul 25 16:17:01 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: cat.c,v 1.54 2013/12/08 08:32:13 spz Exp $ */
+/* $NetBSD: cat.c,v 1.55 2015/07/25 16:17:01 sevan Exp $ */
/*
* Copyright (c) 1989, 1993
@@ -44,7 +44,7 @@ __COPYRIGHT(
#if 0
static char sccsid[] = "@(#)cat.c 8.2 (Berkeley) 4/27/95";
#else
-__RCSID("$NetBSD: cat.c,v 1.54 2013/12/08 08:32:13 spz Exp $");
+__RCSID("$NetBSD: cat.c,v 1.55 2015/07/25 16:17:01 sevan Exp $");
#endif
#endif /* not lint */
@@ -113,7 +113,6 @@ main(int argc, char *argv[])
vflag = 1;
break;
default:
- case '?':
(void)fprintf(stderr,
"Usage: %s [-beflnstuv] [-B bsize] [-] "
"[file ...]\n", getprogname());