summaryrefslogtreecommitdiff
path: root/usr.bin/unexpand
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1999-02-11 23:08:26 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1999-02-11 23:08:26 +0000
commit24470cf8c23dfb58c2bca0bd7ef566c012bcc136 (patch)
tree0514c396e57a2d93eb97e7d1d2c3b809bc6aad80 /usr.bin/unexpand
parentafdf1aa62ffc283f59a1699cb636c362485f2eeb (diff)
fix usage messages
Diffstat (limited to 'usr.bin/unexpand')
-rw-r--r--usr.bin/unexpand/unexpand.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/unexpand/unexpand.c b/usr.bin/unexpand/unexpand.c
index 902e14968aa..b2fb1d32d0a 100644
--- a/usr.bin/unexpand/unexpand.c
+++ b/usr.bin/unexpand/unexpand.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: unexpand.c,v 1.2 1996/06/26 05:42:08 deraadt Exp $ */
+/* $OpenBSD: unexpand.c,v 1.3 1999/02/11 23:08:25 deraadt Exp $ */
/* $NetBSD: unexpand.c,v 1.5 1994/12/24 17:08:05 cgd Exp $ */
/*-
@@ -44,7 +44,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)unexpand.c 8.1 (Berkeley) 6/6/93";
#endif
-static char rcsid[] = "$OpenBSD: unexpand.c,v 1.2 1996/06/26 05:42:08 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: unexpand.c,v 1.3 1999/02/11 23:08:25 deraadt Exp $";
#endif /* not lint */
/*
@@ -69,7 +69,7 @@ main(argc, argv)
argc--, argv++;
if (argc > 0 && argv[0][0] == '-') {
if (strcmp(argv[0], "-a") != 0) {
- fprintf(stderr, "usage: unexpand [ -a ] file ...\n");
+ fprintf(stderr, "usage: unexpand [-a] [file ...]\n");
exit(1);
}
all++;