From 5c0ca64ca08fa28766c31853483c19b863b22e7f Mon Sep 17 00:00:00 2001 From: Andreas Schulz Date: Wed, 28 Dec 1994 00:47:03 +0000 Subject: [PATCH] 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. --- usr.sbin/pstat/pstat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/pstat/pstat.c b/usr.sbin/pstat/pstat.c index c2395ad84fa..204eae68e01 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); }