diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-03-30 13:38:19 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-03-30 13:38:19 +0000 |
commit | 214744dba19a593cf7b76a2623be520272f06a71 (patch) | |
tree | 0b0e6370689dbd168d974fe3aa555f547fde3ef3 /networking | |
parent | a8e27609249b8516c9f9d46606f73ab0c9f94d58 (diff) | |
download | busybox-w32-214744dba19a593cf7b76a2623be520272f06a71.tar.gz busybox-w32-214744dba19a593cf7b76a2623be520272f06a71.tar.bz2 busybox-w32-214744dba19a593cf7b76a2623be520272f06a71.zip |
- fix paste'o which i overlooked when applying dalias' fmt stuff.
Diffstat (limited to 'networking')
-rw-r--r-- | networking/interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/interface.c b/networking/interface.c index e1af2bf19..5c1ee92cd 100644 --- a/networking/interface.c +++ b/networking/interface.c | |||
@@ -2001,7 +2001,7 @@ static void ife_print(struct interface *ptr) | |||
2001 | ptr->stats.tx_packets, ptr->stats.tx_errors, | 2001 | ptr->stats.tx_packets, ptr->stats.tx_errors, |
2002 | ptr->stats.tx_dropped, ptr->stats.tx_fifo_errors, | 2002 | ptr->stats.tx_dropped, ptr->stats.tx_fifo_errors, |
2003 | ptr->stats.tx_carrier_errors); | 2003 | ptr->stats.tx_carrier_errors); |
2004 | printf(" collisions:%lu "), ptr->stats.collisions; | 2004 | printf(" collisions:%lu ", ptr->stats.collisions); |
2005 | if (can_compress) | 2005 | if (can_compress) |
2006 | printf("compressed:%lu ", ptr->stats.tx_compressed); | 2006 | printf("compressed:%lu ", ptr->stats.tx_compressed); |
2007 | if (ptr->tx_queue_len != -1) | 2007 | if (ptr->tx_queue_len != -1) |