From: Wayne Davison Date: Sat, 31 Jul 2004 03:32:42 +0000 (+0000) Subject: Changed "wrote"/"written" to "sent" and "read" to "received" in X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/4de2a1740983244221d66b22b983c36a174e3100 Changed "wrote"/"written" to "sent" and "read" to "received" in the text that is output. --- 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",