diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2003-09-09 04:46:45 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2003-09-09 04:46:45 +0000 |
commit | 7bb4812543929f894a77babc9b136e088e666c51 (patch) | |
tree | 1c32cfe4a58dd83d0c6ca9abb5d1024c546c34f7 /usr.bin/fstat/fstat.c | |
parent | 27344272b0d600ef0b95f6504711f140f526202a (diff) |
add missing -o and sort options in usage();
from Andrey Matveev;
Diffstat (limited to 'usr.bin/fstat/fstat.c')
-rw-r--r-- | usr.bin/fstat/fstat.c | 8 |
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); } |