summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjmc <jmc@openbsd.org>2003-09-09 04:46:44 +0000
committerjmc <jmc@openbsd.org>2003-09-09 04:46:44 +0000
commitf8af51b7f9f95a7a8395b62cb7de499bf3ca1a31 (patch)
tree8880a6d4847d2cd37fc1e5d5dce360b4a94b093a
parentCMI can do mu-law encoding, don't use software emulation mode. (diff)
downloadwireguard-openbsd-f8af51b7f9f95a7a8395b62cb7de499bf3ca1a31.tar.xz
wireguard-openbsd-f8af51b7f9f95a7a8395b62cb7de499bf3ca1a31.zip
add missing -o and sort options in usage();
from Andrey Matveev;
-rw-r--r--usr.bin/fstat/fstat.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/fstat/fstat.c b/usr.bin/fstat/fstat.c
index c4a5eeab5b3..7fe7bf37b77 100644
--- a/usr.bin/fstat/fstat.c
+++ b/usr.bin/fstat/fstat.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fstat.c,v 1.47 2003/07/02 21:04:10 deraadt Exp $ */
+/* $OpenBSD: fstat.c,v 1.48 2003/09/09 04:46:44 jmc Exp $ */
/*-
* Copyright (c) 1988, 1993
@@ -37,7 +37,7 @@ static char copyright[] =
#ifndef lint
/*static char sccsid[] = "from: @(#)fstat.c 8.1 (Berkeley) 6/6/93";*/
-static char *rcsid = "$OpenBSD: fstat.c,v 1.47 2003/07/02 21:04:10 deraadt Exp $";
+static char *rcsid = "$OpenBSD: fstat.c,v 1.48 2003/09/09 04:46:44 jmc Exp $";
#endif /* not lint */
#include <sys/param.h>
@@ -1100,7 +1100,7 @@ getfname(char *filename)
void
usage(void)
{
- fprintf(stderr, "usage: fstat [-fnv] [-p pid] [-u user] "
- "[-N system] [-M core] [file ...]\n");
+ fprintf(stderr, "usage: fstat [-fnov] [-M core] [-N system] "
+ "[-p pid] [-u user] [file ...]\n");
exit(1);
}