diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-03-13 22:02:14 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-03-13 22:02:14 +0000 |
commit | 1411c0f4f749dda670fc2c716705249f2124d166 (patch) | |
tree | fe5f8b476f07e93563dac0060d8c4510b6da11b0 /usr.bin/netstat/main.c | |
parent | 9fac6c32251e4d74a56854585c787d674d83fbb7 (diff) |
some NULL vs 0 and knf; parts from nimadeus@pandora.be
Diffstat (limited to 'usr.bin/netstat/main.c')
-rw-r--r-- | usr.bin/netstat/main.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/netstat/main.c b/usr.bin/netstat/main.c index 9757189b2df..062a96b6380 100644 --- a/usr.bin/netstat/main.c +++ b/usr.bin/netstat/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.43 2003/12/15 07:11:31 mcbride Exp $ */ +/* $OpenBSD: main.c,v 1.44 2004/03/13 22:02:13 deraadt 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.43 2003/12/15 07:11:31 mcbride Exp $"; +static char *rcsid = "$OpenBSD: main.c,v 1.44 2004/03/13 22:02:13 deraadt Exp $"; #endif #endif /* not lint */ @@ -214,10 +214,10 @@ struct protox { etherip_stats,"etherip" }, { -1, N_IPCOMPSTAT, 1, 0, ipcomp_stats, "ipcomp" }, - { -1, N_CARPSTAT, 1, 0, - carp_stats, "carp" }, - { -1, N_PFSYNCSTAT, 1, 0, - pfsync_stats, "pfsync" }, + { -1, N_CARPSTAT, 1, 0, + carp_stats, "carp" }, + { -1, N_PFSYNCSTAT, 1, 0, + pfsync_stats, "pfsync" }, { -1, -1, 0, 0, 0, 0 } }; |