From 5f2cd67530abffe7a91287c7cd2fb83d90b232f9 Mon Sep 17 00:00:00 2001 From: Yoshinobu Inoue Date: Sat, 11 Mar 2000 20:14:08 +0000 Subject: [PATCH] Add a flag to the usage display. There was a missing description for a new flags to netstat. I already added the fix to netstat man, but usage() change is also necessary. Specified by: Ben Smithurst Approved by: jkh --- usr.bin/netstat/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/netstat/main.c b/usr.bin/netstat/main.c index 6ce6dcdd4047..03f1fb110303 100644 --- a/usr.bin/netstat/main.c +++ b/usr.bin/netstat/main.c @@ -673,8 +673,8 @@ static void usage() { (void)fprintf(stderr, "%s\n%s\n%s\n%s\n", -"usage: netstat [-Aan] [-f address_family] [-M core] [-N system]", -" netstat [-abdghimnrs] [-f address_family] [-M core] [-N system]", +"usage: netstat [-Aaln] [-f address_family] [-M core] [-N system]", +" netstat [-abdghilmnrs] [-f address_family] [-M core] [-N system]", " netstat [-bdn] [-I interface] [-M core] [-N system] [-w wait]", " netstat [-M core] [-N system] [-p protocol]"); exit(1);