From 00c5403e093a09d4d1cd833fc2129f840e385f3b Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Thu, 14 Jun 2001 14:15:41 +0000 Subject: [PATCH] Really delete the -h option. CSRG revision 5.33 deleted -h option from getopt(), but not from usage(). Revision 8.3 restored it in getopt(). --- 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 3aab72b74035..1981e44cfe3a 100644 --- a/usr.bin/netstat/main.c +++ b/usr.bin/netstat/main.c @@ -327,7 +327,7 @@ main(argc, argv) af = AF_UNSPEC; - while ((ch = getopt(argc, argv, "Aabdf:ghI:lLiM:mN:np:rstuWw:")) != -1) + while ((ch = getopt(argc, argv, "Aabdf:gI:iLlM:mN:np:rstuWw:")) != -1) switch(ch) { case 'A': Aflag = 1; @@ -725,7 +725,7 @@ usage() { (void)fprintf(stderr, "%s\n%s\n%s\n%s\n", "usage: netstat [-AaLlnW] [-f address_family] [-M core] [-N system]", -" netstat [-abdghilmnrs] [-f address_family] [-M core] [-N system]", +" netstat [-abdgilmnrs] [-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);