diff options
author | Manuel Novoa III | 2001-03-15 15:37:48 +0000 |
---|---|---|
committer | Manuel Novoa III | 2001-03-15 15:37:48 +0000 |
commit | 0e0883e0e902901eb46960efd760c874b99c7bc4 (patch) | |
tree | 0cb2da76c104c32fdcdb904ae2d894ef5e2e65b2 | |
parent | 038c8eb5a99edac57f73552645a7196a64e0dbeb (diff) | |
download | busybox-0e0883e0e902901eb46960efd760c874b99c7bc4.zip busybox-0e0883e0e902901eb46960efd760c874b99c7bc4.tar.gz |
Fix stupid cut-and-paste bug... output RX/TX bytes instead of RX/RX bytes.
-rw-r--r-- | interface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/interface.c b/interface.c index b647874..a80cd55 100644 --- a/interface.c +++ b/interface.c @@ -3,7 +3,7 @@ * that either displays or sets the characteristics of * 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> * 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("\n R"); print_bytes_scaled(ptr->stats.rx_bytes, " T"); - print_bytes_scaled(ptr->stats.rx_bytes, "\n"); + print_bytes_scaled(ptr->stats.tx_bytes, "\n"); } |