Fix stupid cut-and-paste bug... output RX/TX bytes instead of RX/RX bytes.
This commit is contained in:
parent
038c8eb5a9
commit
0e0883e0e9
@ -3,7 +3,7 @@
|
|||||||
* that either displays or sets the characteristics of
|
* that either displays or sets the characteristics of
|
||||||
* one or more of the system's networking interfaces.
|
* one or more of the system's networking interfaces.
|
||||||
*
|
*
|
||||||
* Version: $Id: interface.c,v 1.4 2001/03/12 09:57:59 mjn3 Exp $
|
* Version: $Id: interface.c,v 1.5 2001/03/15 15:37:48 mjn3 Exp $
|
||||||
*
|
*
|
||||||
* Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
|
* Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
|
||||||
* and others. Copyright 1993 MicroWalt Corporation
|
* and others. Copyright 1993 MicroWalt Corporation
|
||||||
@ -2060,7 +2060,7 @@ static void ife_print(struct interface *ptr)
|
|||||||
printf(_("txqueuelen:%d "), ptr->tx_queue_len);
|
printf(_("txqueuelen:%d "), ptr->tx_queue_len);
|
||||||
printf("\n R");
|
printf("\n R");
|
||||||
print_bytes_scaled(ptr->stats.rx_bytes, " T");
|
print_bytes_scaled(ptr->stats.rx_bytes, " T");
|
||||||
print_bytes_scaled(ptr->stats.rx_bytes, "\n");
|
print_bytes_scaled(ptr->stats.tx_bytes, "\n");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user