summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarcel <marcel@FreeBSD.org>2015-03-04 02:56:32 +0000
committermarcel <marcel@FreeBSD.org>2015-03-04 02:56:32 +0000
commit7a87033ac98b808df19eb3ff0da8a9b49cfadf67 (patch)
tree0a15fcc9853b550d9d7fcc1503b2a15143f617c3
parent6b2282f75b8e8636e574aabfeac59678bfc8a1a7 (diff)
downloadFreeBSD-src-7a87033ac98b808df19eb3ff0da8a9b49cfadf67.zip
FreeBSD-src-7a87033ac98b808df19eb3ff0da8a9b49cfadf67.tar.gz
Fix typo in dropped-packets attribute (missing s).
Pointed-out by: allanjude (excellent catch!)
-rw-r--r--usr.bin/netstat/if.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/netstat/if.c b/usr.bin/netstat/if.c
index 6a9fc11..cc8405e 100644
--- a/usr.bin/netstat/if.c
+++ b/usr.bin/netstat/if.c
@@ -422,7 +422,7 @@ intpr(int interval, void (*pfunc)(char *), int af)
show_stat("lu", 8, "received-packets", IFA_STAT(ipackets),
link|network);
show_stat("lu", 5, "received-errors", IFA_STAT(ierrors), link);
- show_stat("lu", 5, "dropped-packet", IFA_STAT(iqdrops), link);
+ show_stat("lu", 5, "dropped-packets", IFA_STAT(iqdrops), link);
if (bflag)
show_stat("lu", 10, "received-bytes", IFA_STAT(ibytes),
link|network);
OpenPOWER on IntegriCloud