summaryrefslogtreecommitdiffstats
path: root/usr.bin/fetch
diff options
context:
space:
mode:
authorasami <asami@FreeBSD.org>1997-08-19 01:57:53 +0000
committerasami <asami@FreeBSD.org>1997-08-19 01:57:53 +0000
commit89548edf3a0a882e94f3744d50207812df2ac177 (patch)
tree4368064746f6f3a536df13cbaddd9651fc48749b /usr.bin/fetch
parent1b628fbe35e3a9f22b821abea637ada9ab29e967 (diff)
downloadFreeBSD-src-89548edf3a0a882e94f3744d50207812df2ac177.zip
FreeBSD-src-89548edf3a0a882e94f3744d50207812df2ac177.tar.gz
Be consistent with other utilities in spelling "Kbytes". (Actually,
there even was one of them about ten lines above in the same file.) Reminded by: joerg's commit to usr.bin/ftp/ftp.c rev 1.9
Diffstat (limited to 'usr.bin/fetch')
-rw-r--r--usr.bin/fetch/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/fetch/main.c b/usr.bin/fetch/main.c
index c584065..eca45a8 100644
--- a/usr.bin/fetch/main.c
+++ b/usr.bin/fetch/main.c
@@ -24,7 +24,7 @@
* SUCH DAMAGE.
*/
-/* $Id: main.c,v 1.41 1997/07/25 19:35:44 wollman Exp $ */
+/* $Id: main.c,v 1.42 1997/08/05 20:18:39 ache Exp $ */
#include <sys/types.h>
@@ -338,7 +338,7 @@ display(struct fetch_state *fs, off_t size, ssize_t n)
fprintf (stderr, " (%.0f bytes/s)\n", d);
else {
d /=1024;
- fprintf (stderr, " (%.2f kB/s)\n", d);
+ fprintf (stderr, " (%.2f Kbytes/s)\n", d);
}
free(s);
init = 0;
@@ -356,7 +356,7 @@ display(struct fetch_state *fs, off_t size, ssize_t n)
else if (size > 0)
fprintf (stderr, "\r%s: %2qd%%", s, (quad_t)100*bytes/size);
else
- fprintf (stderr, "\r%s: %qd kB", s, (quad_t)bytes/1024);
+ fprintf (stderr, "\r%s: %qd Kbytes", s, (quad_t)bytes/1024);
}
}
OpenPOWER on IntegriCloud