summaryrefslogtreecommitdiff
path: root/usr.bin/netstat
diff options
context:
space:
mode:
authorMarco Pfatschbacher <mpf@cvs.openbsd.org>2008-05-08 03:13:56 +0000
committerMarco Pfatschbacher <mpf@cvs.openbsd.org>2008-05-08 03:13:56 +0000
commit3dda6abee0e02dce0e2dbc4df96235f495557e0a (patch)
treef485deb6f0484121c74217bb8e7378b2def158cf /usr.bin/netstat
parent4704fc6bbd2a784c0b2d7c7dfc6908cf5d3037a6 (diff)
Receiving carp packets for unknown vhid's is not really an error.
Change the wording accordingly. OK markus@, dlg@
Diffstat (limited to 'usr.bin/netstat')
-rw-r--r--usr.bin/netstat/inet.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/netstat/inet.c b/usr.bin/netstat/inet.c
index 888952b7452..5ce43baabcc 100644
--- a/usr.bin/netstat/inet.c
+++ b/usr.bin/netstat/inet.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: inet.c,v 1.105 2008/02/05 16:14:31 sthen Exp $ */
+/* $OpenBSD: inet.c,v 1.106 2008/05/08 03:13:55 mpf Exp $ */
/* $NetBSD: inet.c,v 1.14 1995/10/03 21:42:37 thorpej Exp $ */
/*
@@ -984,7 +984,7 @@ carp_stats(char *name)
p(carps_badver, "\t\t%llu discarded packet%s with a bad version\n");
p2(carps_badlen, "\t\t%llu discarded because packet too short\n");
p2(carps_badauth, "\t\t%llu discarded for bad authentication\n");
- p2(carps_badvhid, "\t\t%llu discarded for bad vhid\n");
+ p2(carps_badvhid, "\t\t%llu discarded for unknown vhid\n");
p2(carps_badaddrs, "\t\t%llu discarded because of a bad address list\n");
p(carps_opackets, "\t%llu packet%s sent (IPv4)\n");
p(carps_opackets6, "\t%llu packet%s sent (IPv6)\n");