diff options
author | 1999-03-01 01:28:12 +0000 | |
---|---|---|
committer | 1999-03-01 01:28:12 +0000 | |
commit | 128e7362e474538a34e6d9cca459d72df7b20677 (patch) | |
tree | 28171ef90c5900cc1320ae70086e39ce7ccb7ff9 | |
parent | Add extra pixel to 'l', so that it no longer looks like a '|' (diff) | |
download | wireguard-openbsd-128e7362e474538a34e6d9cca459d72df7b20677.tar.xz wireguard-openbsd-128e7362e474538a34e6d9cca459d72df7b20677.zip |
There is no -h flag
-rw-r--r-- | usr.bin/netstat/main.c | 8 | ||||
-rw-r--r-- | usr.bin/netstat/netstat.1 | 6 |
2 files changed, 5 insertions, 9 deletions
diff --git a/usr.bin/netstat/main.c b/usr.bin/netstat/main.c index 3f82ffa9055..674855ba1ec 100644 --- a/usr.bin/netstat/main.c +++ b/usr.bin/netstat/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.16 1999/02/24 22:57:34 angelos Exp $ */ +/* $OpenBSD: main.c,v 1.17 1999/03/01 01:28:13 d Exp $ */ /* $NetBSD: main.c,v 1.9 1996/05/07 02:55:02 thorpej Exp $ */ /* @@ -44,7 +44,7 @@ char copyright[] = #if 0 static char sccsid[] = "from: @(#)main.c 8.4 (Berkeley) 3/1/94"; #else -static char *rcsid = "$OpenBSD: main.c,v 1.16 1999/02/24 22:57:34 angelos Exp $"; +static char *rcsid = "$OpenBSD: main.c,v 1.17 1999/03/01 01:28:13 d Exp $"; #endif #endif /* not lint */ @@ -248,7 +248,7 @@ main(argc, argv) af = AF_UNSPEC; - while ((ch = getopt(argc, argv, "Aadf:ghI:iM:mN:np:rstuvw:")) != -1) + while ((ch = getopt(argc, argv, "Aadf:gI:iM:mN:np:rstuvw:")) != -1) switch(ch) { case 'A': Aflag = 1; @@ -563,7 +563,7 @@ usage() (void)fprintf(stderr, "usage: %s [-Aan] [-f address_family] [-M core] [-N system]\n", __progname); (void)fprintf(stderr, -" %s [-ghimnrs] [-f address_family] [-M core] [-N system]\n", __progname); +" %s [-gimnrs] [-f address_family] [-M core] [-N system]\n", __progname); (void)fprintf(stderr, " %s [-n] [-I interface] [-M core] [-N system] [-w wait]\n", __progname); (void)fprintf(stderr, diff --git a/usr.bin/netstat/netstat.1 b/usr.bin/netstat/netstat.1 index ac14556b57d..a8e2ac90ee0 100644 --- a/usr.bin/netstat/netstat.1 +++ b/usr.bin/netstat/netstat.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: netstat.1,v 1.13 1999/02/24 22:57:34 angelos Exp $ +.\" $OpenBSD: netstat.1,v 1.14 1999/03/01 01:28:12 d Exp $ .\" $NetBSD: netstat.1,v 1.11 1995/10/03 21:42:43 thorpej Exp $ .\" .\" Copyright (c) 1983, 1990, 1992, 1993 @@ -132,10 +132,6 @@ By default, show the IP Multicast virtual-interface and routing tables. If the .Fl s option is also present, show multicast routing statistics. -.It Fl h -Show the state of the -.Tn IMP -host table (obsolete). .It Fl I Ar interface Show information about the specified interface; used with a |