summaryrefslogtreecommitdiffstats
path: root/usr.bin/netstat
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2009-10-15 10:31:24 +0000
committerrwatson <rwatson@FreeBSD.org>2009-10-15 10:31:24 +0000
commit6cc5f15f1f8bd96438a528e7525af3382e9d7eee (patch)
treea54a68fdf7c6021e1d1d64e0c2f4da856bd6d629 /usr.bin/netstat
parent8a7e11a9012cc5fe4f767c6c8ea8c2abb7878fa0 (diff)
downloadFreeBSD-src-6cc5f15f1f8bd96438a528e7525af3382e9d7eee.zip
FreeBSD-src-6cc5f15f1f8bd96438a528e7525af3382e9d7eee.tar.gz
Print routing statistics as unsigned short rather than unsigned int,
otherwise sign extension leads to unlikely values when in the negative range of the signed short structure fields that hold the statistics. The type used to hold routing statistics is arguably also incorrect. MFC after: 3 days
Diffstat (limited to 'usr.bin/netstat')
-rw-r--r--usr.bin/netstat/route.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/netstat/route.c b/usr.bin/netstat/route.c
index 735612b..2e9e919 100644
--- a/usr.bin/netstat/route.c
+++ b/usr.bin/netstat/route.c
@@ -1008,11 +1008,11 @@ rt_stats(u_long rtsaddr, u_long rttaddr)
#define p(f, m) if (rtstat.f || sflag <= 1) \
printf(m, rtstat.f, plural(rtstat.f))
- p(rts_badredirect, "\t%u bad routing redirect%s\n");
- p(rts_dynamic, "\t%u dynamically created route%s\n");
- p(rts_newgateway, "\t%u new gateway%s due to redirects\n");
- p(rts_unreach, "\t%u destination%s found unreachable\n");
- p(rts_wildcard, "\t%u use%s of a wildcard route\n");
+ p(rts_badredirect, "\t%hu bad routing redirect%s\n");
+ p(rts_dynamic, "\t%hu dynamically created route%s\n");
+ p(rts_newgateway, "\t%hu new gateway%s due to redirects\n");
+ p(rts_unreach, "\t%hu destination%s found unreachable\n");
+ p(rts_wildcard, "\t%hu use%s of a wildcard route\n");
#undef p
if (rttrash || sflag <= 1)
OpenPOWER on IntegriCloud