Module Name: src
Committed By: wiz
Date: Wed Oct 6 07:59:18 UTC 2010
Modified Files:
src/usr.bin/uniq: uniq.c
Log Message:
Sync usage with man page.
To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/usr.bin/uniq/uniq.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/uniq/uniq.c
diff -u src/usr.bin/uniq/uniq.c:1.16 src/usr.bin/uniq/uniq.c:1.17
--- src/usr.bin/uniq/uniq.c:1.16 Wed Oct 6 06:43:26 2010
+++ src/usr.bin/uniq/uniq.c Wed Oct 6 07:59:18 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: uniq.c,v 1.16 2010/10/06 06:43:26 dholland Exp $ */
+/* $NetBSD: uniq.c,v 1.17 2010/10/06 07:59:18 wiz Exp $ */
/*
* Copyright (c) 1989, 1993
@@ -42,7 +42,7 @@
#if 0
static char sccsid[] = "@(#)uniq.c 8.3 (Berkeley) 5/4/95";
#endif
-__RCSID("$NetBSD: uniq.c,v 1.16 2010/10/06 06:43:26 dholland Exp $");
+__RCSID("$NetBSD: uniq.c,v 1.17 2010/10/06 07:59:18 wiz Exp $");
#endif /* not lint */
#include <err.h>
@@ -251,7 +251,7 @@
static void
usage(void)
{
- (void)fprintf(stderr, "Usage: %s [-c | -du] [-f fields] [-s chars] "
+ (void)fprintf(stderr, "Usage: %s [-cdu] [-f fields] [-s chars] "
"[input [output]]\n", getprogname());
exit(1);
}