summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sysinstall/dist.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>2001-04-08 20:42:52 +0000
committerjkh <jkh@FreeBSD.org>2001-04-08 20:42:52 +0000
commitab4549c73c054a888dca8fee10c7c62f57993d3f (patch)
treed0216f94ce9ed824248aaac30baccb7efadb30a5 /usr.sbin/sysinstall/dist.c
parent2dea5ee6644879fa9c6ff4d0a371deacc27cfa0a (diff)
downloadFreeBSD-src-ab4549c73c054a888dca8fee10c7c62f57993d3f.zip
FreeBSD-src-ab4549c73c054a888dca8fee10c7c62f57993d3f.tar.gz
According with RFC 2330 ("Framework for IP Performance Metrics", from
Paxson et al, Status: Informational, May 1998), we should use "bits per second" and "k" as 1000 not 1024 for throughput measures. Submitted by: Eduardo Souza Machado da Silva <esms@acm.org>
Diffstat (limited to 'usr.sbin/sysinstall/dist.c')
-rw-r--r--usr.sbin/sysinstall/dist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/dist.c b/usr.sbin/sysinstall/dist.c
index 3a675a0..99ae760 100644
--- a/usr.sbin/sysinstall/dist.c
+++ b/usr.sbin/sysinstall/dist.c
@@ -761,7 +761,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.",
- total, dist, chunk + 1, numchunks, (total / seconds) / 1024.0);
+ total, dist, chunk + 1, numchunks, (total / seconds) / 1000.0);
}
}
fclose(fp);
OpenPOWER on IntegriCloud