diff options
author | dg <dg@FreeBSD.org> | 1997-06-10 12:49:17 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1997-06-10 12:49:17 +0000 |
commit | a5d7fa9daa1e559f8eb03a0e305b3f7c2debe017 (patch) | |
tree | 779e48600344940cc29c675dc28947d0ba6508e0 /usr.bin/ftp/ftp.c | |
parent | d048b9413f9809ad4602da2f267694a6a33c654f (diff) | |
download | FreeBSD-src-a5d7fa9daa1e559f8eb03a0e305b3f7c2debe017.zip FreeBSD-src-a5d7fa9daa1e559f8eb03a0e305b3f7c2debe017.tar.gz |
Meg -> Mbytes
PR: 3829
Submitted by: Josh Gilliam <josh@quick.net>
Diffstat (limited to 'usr.bin/ftp/ftp.c')
-rw-r--r-- | usr.bin/ftp/ftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/ftp/ftp.c b/usr.bin/ftp/ftp.c index 6b499c43..f37798e 100644 --- a/usr.bin/ftp/ftp.c +++ b/usr.bin/ftp/ftp.c @@ -1164,7 +1164,7 @@ ptransfer(direction, bytes, t0, t1) #define nz(x) ((x) == 0 ? 1 : (x)) bs = bytes / nz(s); if(bs > ( 1024 * 1024 )) - printf("%ld bytes %s in %.2f seconds (%.2f Meg/s)\n", + printf("%ld bytes %s in %.2f seconds (%.2f Mbytes/s)\n", bytes, direction, s, bs / (1024. * 1024.)); else printf("%ld bytes %s in %.2f seconds (%.2f Kbytes/s)\n", |