summaryrefslogtreecommitdiff
path: root/usr.bin/uniq/uniq.c
diff options
context:
space:
mode:
authorMatthias Kilian <kili@cvs.openbsd.org>2007-11-11 17:50:30 +0000
committerMatthias Kilian <kili@cvs.openbsd.org>2007-11-11 17:50:30 +0000
commit849cceffdfcba8d77d0511e70553412f5830b3a9 (patch)
tree9cd55531fa84a664df790464bfc9f419a9d94053 /usr.bin/uniq/uniq.c
parent1e8381fe5c518359d653c43c8f8d27b143e0cda2 (diff)
Mention that -cd and -cu are possible, and that it's an extension to POSIX.
discussed with jmc and otto ok jmc
Diffstat (limited to 'usr.bin/uniq/uniq.c')
-rw-r--r--usr.bin/uniq/uniq.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/uniq/uniq.c b/usr.bin/uniq/uniq.c
index 073bb334aaf..50a0f600bc2 100644
--- a/usr.bin/uniq/uniq.c
+++ b/usr.bin/uniq/uniq.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uniq.c,v 1.16 2007/11/09 20:04:03 kili Exp $ */
+/* $OpenBSD: uniq.c,v 1.17 2007/11/11 17:50:29 kili Exp $ */
/* $NetBSD: uniq.c,v 1.7 1995/08/31 22:03:48 jtc Exp $ */
/*
@@ -43,7 +43,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)uniq.c 8.3 (Berkeley) 5/4/95";
#endif
-static char rcsid[] = "$OpenBSD: uniq.c,v 1.16 2007/11/09 20:04:03 kili Exp $";
+static char rcsid[] = "$OpenBSD: uniq.c,v 1.17 2007/11/11 17:50:29 kili Exp $";
#endif /* not lint */
#include <ctype.h>
@@ -243,7 +243,7 @@ usage(void)
extern char *__progname;
(void)fprintf(stderr,
- "usage: %s [-c | -d | -u] [-f fields] [-s chars] [input_file [output_file]]\n",
+ "usage: %s [-c] [-d | -u] [-f fields] [-s chars] [input_file [output_file]]\n",
__progname);
exit(1);
}