diff options
author | ats <ats@FreeBSD.org> | 1994-12-28 00:47:03 +0000 |
---|---|---|
committer | ats <ats@FreeBSD.org> | 1994-12-28 00:47:03 +0000 |
commit | 38aef237686d50296294ac17ae1df9dfedcdcac4 (patch) | |
tree | 400168ab625ea18da225840f306dd6238a1f1c19 /usr.sbin/pstat | |
parent | 8b2cef6b70b4605908c2560ceeee5c4f4e277ad5 (diff) | |
download | FreeBSD-src-38aef237686d50296294ac17ae1df9dfedcdcac4.zip FreeBSD-src-38aef237686d50296294ac17ae1df9dfedcdcac4.tar.gz |
Submitted by: John Capo
Bogus pstat usage message from pstat:
usage: pstat -Tfnstv [system] [-M core] [-N system]
[system] is not mentioned in the man page and I don't
see where it is used in the code either.
Added also a [] around the first options to show them as optional, ATS.
Diffstat (limited to 'usr.sbin/pstat')
-rw-r--r-- | usr.sbin/pstat/pstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/pstat/pstat.c b/usr.sbin/pstat/pstat.c index c2395ad..204eae6 100644 --- a/usr.sbin/pstat/pstat.c +++ b/usr.sbin/pstat/pstat.c @@ -1073,6 +1073,6 @@ void usage() { (void)fprintf(stderr, - "usage: pstat -Tfnstv [system] [-M core] [-N system]\n"); + "usage: pstat [-Tfnstv] [-M core] [-N system]\n"); exit(1); } |