diff options
author | ru <ru@FreeBSD.org> | 2003-10-23 13:53:19 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2003-10-23 13:53:19 +0000 |
commit | feaeb43d02b84e57f77d9ab15abb3e6d6bf62595 (patch) | |
tree | 0fd408d4d8d3b6bdc15a19ff5c9ab72724ab651a /usr.bin/netstat | |
parent | 2b7b4d364f45bd335ed062aba4acbb0546ceb337 (diff) | |
download | FreeBSD-src-feaeb43d02b84e57f77d9ab15abb3e6d6bf62595.zip FreeBSD-src-feaeb43d02b84e57f77d9ab15abb3e6d6bf62595.tar.gz |
Print the correct ICMP statistics for "no return routes".
Diffstat (limited to 'usr.bin/netstat')
-rw-r--r-- | usr.bin/netstat/inet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/netstat/inet.c b/usr.bin/netstat/inet.c index 55994a1..80d3e4d 100644 --- a/usr.bin/netstat/inet.c +++ b/usr.bin/netstat/inet.c @@ -658,7 +658,7 @@ icmp_stats(u_long off __unused, const char *name, int af1 __unused) } p(icps_reflect, "\t%lu message response%s generated\n"); p2(icps_badaddr, "\t%lu invalid return address%s\n"); - p(icps_badaddr, "\t%lu no return route%s\n"); + p(icps_noroute, "\t%lu no return route%s\n"); #undef p #undef p1a #undef p2 |