From e8f9fc5813dc7a6cdd5b4746082576f977fa6ec5 Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Mon, 9 Apr 2001 16:49:50 +0000 Subject: [PATCH] Clarify that we're talking about KBytes per second vs kBits per second. Reminded by: bde --- usr.sbin/sysinstall/dist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/sysinstall/dist.c b/usr.sbin/sysinstall/dist.c index 99ae7600174..1eda27fb479 100644 --- a/usr.sbin/sysinstall/dist.c +++ b/usr.sbin/sysinstall/dist.c @@ -760,7 +760,7 @@ distExtract(char *parent, Distribution *me) if (seconds != last_msg) { last_msg = seconds; - msgInfo("%10d bytes read from %s dist, chunk %2d of %2d @ %.1f KB/sec.", + msgInfo("%10d bytes read from %s dist, chunk %2d of %2d @ %.1f KBytes/sec.", total, dist, chunk + 1, numchunks, (total / seconds) / 1000.0); } }