summaryrefslogtreecommitdiff
path: root/usr.bin/env/env.c
diff options
context:
space:
mode:
authorAaron Campbell <aaron@cvs.openbsd.org>2001-03-01 20:21:11 +0000
committerAaron Campbell <aaron@cvs.openbsd.org>2001-03-01 20:21:11 +0000
commit5528bf47e9f3934477cf92ca34c1619b16d16c3f (patch)
treebcdde26ac0b10a0a1ad8e31d54a4f078b813d377 /usr.bin/env/env.c
parent982f4ee72c1e2f4872d0651630cdb04ec1c22c56 (diff)
Sync usage() with man page; mpech@prosoft.org.lv
Diffstat (limited to 'usr.bin/env/env.c')
-rw-r--r--usr.bin/env/env.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/env/env.c b/usr.bin/env/env.c
index 2180a82617c..864d5025eec 100644
--- a/usr.bin/env/env.c
+++ b/usr.bin/env/env.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: env.c,v 1.5 2000/09/15 07:13:48 deraadt Exp $ */
+/* $OpenBSD: env.c,v 1.6 2001/03/01 20:21:10 aaron Exp $ */
/*
* Copyright (c) 1988, 1993, 1994
@@ -41,7 +41,7 @@ static char copyright[] =
#ifndef lint
/*static char sccsid[] = "@(#)env.c 8.3 (Berkeley) 4/2/94";*/
-static char rcsid[] = "$OpenBSD: env.c,v 1.5 2000/09/15 07:13:48 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: env.c,v 1.6 2001/03/01 20:21:10 aaron Exp $";
#endif /* not lint */
#include <err.h>
@@ -104,6 +104,7 @@ main(argc, argv)
void
usage()
{
- (void) fprintf(stderr, "usage: env [-i] [name=value ...] [command]\n");
+ (void)fprintf(stderr, "usage: env [-i] [name=value ...] "
+ "[utility [argument ...]]\n");
exit (1);
}