]> git.puffer.fish Git - mirror/frr.git/commitdiff
* interface.c: Fix CRC and frame errors statistics in Linux.
authorhasso <hasso>
Sun, 6 Mar 2005 13:42:05 +0000 (13:42 +0000)
committerhasso <hasso>
Sun, 6 Mar 2005 13:42:05 +0000 (13:42 +0000)
zebra/ChangeLog
zebra/interface.c

index a93f886ee1b1c78e77df3bff4bf4bb4168f07c95..ad8cf7ccb9e0140c72051aabdfc613fce9af9bcf 100644 (file)
@@ -1,3 +1,7 @@
+2005-03-06 Hasso Tepper <hasso at quagga.net>
+
+       * interface.c: Fix CRC and frame errors statistics in Linux.
+
 2005-02-28 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
 
        * zserv.c: Must include network.h and buffer.h for non-blocking I/O.
index 0b206d321f26747176cefc1ff72f516d0ad9d490..4864103b70f2c27e61e4650d7137ac935c02e288 100644 (file)
@@ -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);