aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2004-07-31 03:32:42 +0000
committerWayne Davison <wayned@samba.org>2004-07-31 03:32:42 +0000
commit4de2a1740983244221d66b22b983c36a174e3100 (patch)
treec3007c53841c4874b12a2b4f3dd9165d77368431 /main.c
parent99d24f77ed2d6d87986d47e3559a45772c1cdf36 (diff)
downloadandroid_external_rsync-4de2a1740983244221d66b22b983c36a174e3100.tar.gz
android_external_rsync-4de2a1740983244221d66b22b983c36a174e3100.tar.bz2
android_external_rsync-4de2a1740983244221d66b22b983c36a174e3100.zip
Changed "wrote"/"written" to "sent" and "read" to "received" in
the text that is output.
Diffstat (limited to 'main.c')
-rw-r--r--main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.c b/main.c
index 0c355362..c4b8333a 100644
--- a/main.c
+++ b/main.c
@@ -177,15 +177,15 @@ static void report(int f)
rprintf(FINFO,"Matched data: %.0f bytes\n",
(double)stats.matched_data);
rprintf(FINFO,"File list size: %d\n", stats.flist_size);
- rprintf(FINFO,"Total bytes written: %.0f\n",
+ rprintf(FINFO,"Total bytes sent: %.0f\n",
(double)total_written);
- rprintf(FINFO,"Total bytes read: %.0f\n",
+ rprintf(FINFO,"Total bytes received: %.0f\n",
(double)total_read);
}
if (verbose || do_stats) {
rprintf(FINFO,
- "\nwrote %.0f bytes read %.0f bytes %.2f bytes/sec\n",
+ "\nsent %.0f bytes received %.0f bytes %.2f bytes/sec\n",
(double)total_written, (double)total_read,
(total_written + total_read)/(0.5 + (t - starttime)));
rprintf(FINFO, "total size is %.0f speedup is %.2f\n",