aboutsummaryrefslogtreecommitdiff
path: root/interface.c
diff options
context:
space:
mode:
authormjn3 <mjn3@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-03-15 15:37:48 +0000
committermjn3 <mjn3@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-03-15 15:37:48 +0000
commitede30342883a8e276b4d1cb59f370d892c736050 (patch)
tree0cb2da76c104c32fdcdb904ae2d894ef5e2e65b2 /interface.c
parentcdeec02fc7caa5801f5b5ed6385238d68f4201a4 (diff)
downloadbusybox-w32-ede30342883a8e276b4d1cb59f370d892c736050.tar.gz
busybox-w32-ede30342883a8e276b4d1cb59f370d892c736050.tar.bz2
busybox-w32-ede30342883a8e276b4d1cb59f370d892c736050.zip
Fix stupid cut-and-paste bug... output RX/TX bytes instead of RX/RX bytes.
git-svn-id: svn://busybox.net/trunk/busybox@2083 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-rw-r--r--interface.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/interface.c b/interface.c
index b6478746a..a80cd5524 100644
--- a/interface.c
+++ b/interface.c
@@ -3,7 +3,7 @@
3 * that either displays or sets the characteristics of 3 * that either displays or sets the characteristics of
4 * one or more of the system's networking interfaces. 4 * one or more of the system's networking interfaces.
5 * 5 *
6 * Version: $Id: interface.c,v 1.4 2001/03/12 09:57:59 mjn3 Exp $ 6 * Version: $Id: interface.c,v 1.5 2001/03/15 15:37:48 mjn3 Exp $
7 * 7 *
8 * Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org> 8 * Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
9 * and others. Copyright 1993 MicroWalt Corporation 9 * and others. Copyright 1993 MicroWalt Corporation
@@ -2060,7 +2060,7 @@ static void ife_print(struct interface *ptr)
2060 printf(_("txqueuelen:%d "), ptr->tx_queue_len); 2060 printf(_("txqueuelen:%d "), ptr->tx_queue_len);
2061 printf("\n R"); 2061 printf("\n R");
2062 print_bytes_scaled(ptr->stats.rx_bytes, " T"); 2062 print_bytes_scaled(ptr->stats.rx_bytes, " T");
2063 print_bytes_scaled(ptr->stats.rx_bytes, "\n"); 2063 print_bytes_scaled(ptr->stats.tx_bytes, "\n");
2064 2064
2065 } 2065 }
2066 2066