diff options
author | hasso <hasso> | 2005-03-06 13:42:05 +0000 |
---|---|---|
committer | hasso <hasso> | 2005-03-06 13:42:05 +0000 |
commit | b35ef2ce113d232517e17103f3e6b4c149be5678 (patch) | |
tree | 228bc56dd66d6d5da8d03fc40476299d143d514a /zebra/interface.c | |
parent | 23be4cb8031802d66bfe69fc14227dd1b5e66d1a (diff) | |
download | quagga-b35ef2ce113d232517e17103f3e6b4c149be5678.tar.bz2 quagga-b35ef2ce113d232517e17103f3e6b4c149be5678.tar.xz |
* interface.c: Fix CRC and frame errors statistics in Linux.
Diffstat (limited to 'zebra/interface.c')
-rw-r--r-- | zebra/interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/interface.c b/zebra/interface.c index 0b206d32..4864103b 100644 --- a/zebra/interface.c +++ b/zebra/interface.c @@ -748,7 +748,7 @@ if_dump_vty (struct vty *vty, struct interface *ifp) ifp->stats.rx_bytes, ifp->stats.rx_dropped, VTY_NEWLINE); vty_out (vty, " %lu input errors, %lu length, %lu overrun," - " CRC %lu, frame %lu%s", + " %lu CRC, %lu frame%s", ifp->stats.rx_errors, ifp->stats.rx_length_errors, ifp->stats.rx_over_errors, ifp->stats.rx_crc_errors, ifp->stats.rx_frame_errors, VTY_NEWLINE); |