summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraaron <aaron@openbsd.org>2001-03-01 20:21:10 +0000
committeraaron <aaron@openbsd.org>2001-03-01 20:21:10 +0000
commit2c24d87bb2f46ea1c8fc2023407d10e39a5c61eb (patch)
treed193ea4e77708002d464cf9705eaff285d25fcbc
parentFix typo (aaron) and pull in a missing part from the -man version. (diff)
downloadwireguard-openbsd-2c24d87bb2f46ea1c8fc2023407d10e39a5c61eb.tar.xz
wireguard-openbsd-2c24d87bb2f46ea1c8fc2023407d10e39a5c61eb.zip
Sync usage() with man page; mpech@prosoft.org.lv
-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);
}