diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2003-11-28 10:05:44 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2003-11-28 10:05:44 +0000 |
commit | e9d7b69dbfde782a9721fa8b63908a3d667b79de (patch) | |
tree | 87deb74fce07de425e8f4308adc6f031108f3646 /usr.bin/netstat/main.c | |
parent | 134a486ef9e2417eee26241e8c5d53d39f2457d4 (diff) |
netstat.1:
- In SYNOPSIS, -a goes with interface display, not -s
- In SYNOPSIS, -i and -I are mutually exclusive
- expand -a description (shows multicast with interface display)
- expand -b and -d descriptions and fix parenthesis typo
- consistently refer to multicast (not Multicast) and MTU (not mtu)
- expand -I description (interaction with -a)
- two missing full stops
- update SEE ALSO
main.c:
- sync with SYNOPSIS
Diffstat (limited to 'usr.bin/netstat/main.c')
-rw-r--r-- | usr.bin/netstat/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/netstat/main.c b/usr.bin/netstat/main.c index f3ba7f6be9c..224e29d49aa 100644 --- a/usr.bin/netstat/main.c +++ b/usr.bin/netstat/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.40 2003/11/02 10:23:58 markus Exp $ */ +/* $OpenBSD: main.c,v 1.41 2003/11/28 10:05:43 jmc Exp $ */ /* $NetBSD: main.c,v 1.9 1996/05/07 02:55:02 thorpej Exp $ */ /* @@ -40,7 +40,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.40 2003/11/02 10:23:58 markus Exp $"; +static char *rcsid = "$OpenBSD: main.c,v 1.41 2003/11/28 10:05:43 jmc Exp $"; #endif #endif /* not lint */ @@ -652,6 +652,6 @@ usage(void) (void)fprintf(stderr, " %s [-M core] [-N system] [-p protocol]\n", __progname); (void)fprintf(stderr, -" %s [-s] [-f address_family] [-i] [-I interface]\n", __progname); +" %s [-a] [-f address_family] [-i | -I interface]\n", __progname); exit(1); } |