From 29088f86f18e0c9f56ba8ece77a31c28c053b640 Mon Sep 17 00:00:00 2001 From: pb Date: Tue, 17 Jul 2001 07:24:36 +0000 Subject: [PATCH] doh --- lib/interface.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/interface.c b/lib/interface.c index e77552ab3..0ab29cdf2 100644 --- a/lib/interface.c +++ b/lib/interface.c @@ -7,7 +7,7 @@ 8/2000 Andi Kleen make the list operations a bit more efficient. People are crazy enough to use thousands of aliases now. - $Id: interface.c,v 1.15 2001/07/17 07:21:57 pb Exp $ + $Id: interface.c,v 1.16 2001/07/17 07:24:36 pb Exp $ */ #include "config.h" @@ -848,7 +848,7 @@ void ife_print_long(struct interface *ptr) Rext = "MB"; } else if (rx > 1024) { short_rx /= 1024; - Rext = "KB"; + Rext = "kB"; } if (tx > 1048576) { short_tx /= 1048576; @@ -856,7 +856,7 @@ void ife_print_long(struct interface *ptr) } else if (tx > 1024) { short_tx /= 1024; - Text = "KB"; + Text = "kB"; } printf(" "); -- 2.11.4.GIT