diff options
author | obrien <obrien@FreeBSD.org> | 2008-01-04 03:09:28 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2008-01-04 03:09:28 +0000 |
commit | 21f57c54a6251181207511c934f057402bc5965a (patch) | |
tree | e1ed9515e8b972ee85e48567d0394b46f3dfe46f /usr.bin/netstat | |
parent | 42e1a3c481dfe5a38ee9d62c7a2bb392a9c635bc (diff) | |
download | FreeBSD-src-21f57c54a6251181207511c934f057402bc5965a.zip FreeBSD-src-21f57c54a6251181207511c934f057402bc5965a.tar.gz |
Make a few messages more consistant with the others.
Diffstat (limited to 'usr.bin/netstat')
-rw-r--r-- | usr.bin/netstat/inet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/netstat/inet.c b/usr.bin/netstat/inet.c index a43219e..36a8203 100644 --- a/usr.bin/netstat/inet.c +++ b/usr.bin/netstat/inet.c @@ -928,8 +928,8 @@ icmp_stats(u_long off, const char *name, int af1 __unused, int proto __unused) icmpstat.icps_outhist[i]); } p(icps_badcode, "\t%lu message%s with bad code fields\n"); - p(icps_tooshort, "\t%lu message%s < minimum length\n"); - p(icps_checksum, "\t%lu bad checksum%s\n"); + p(icps_tooshort, "\t%lu message%s less than the minimum length\n"); + p(icps_checksum, "\t%lu message%s with bad checksum\n"); p(icps_badlen, "\t%lu message%s with bad length\n"); p1a(icps_bmcastecho, "\t%lu multicast echo requests ignored\n"); p1a(icps_bmcasttstamp, "\t%lu multicast timestamp requests ignored\n"); |