]> git.ipfire.org Git - thirdparty/rsync.git/commitdiff
Don't use comma_num() in FLOG output.
authorWayne Davison <wayned@samba.org>
Sat, 26 Oct 2013 23:28:15 +0000 (16:28 -0700)
committerWayne Davison <wayned@samba.org>
Sun, 27 Oct 2013 16:48:57 +0000 (09:48 -0700)
log.c

diff --git a/log.c b/log.c
index 34a013b93fcf29b6043bbb29984d2992245bb691..8015a914f575201e93bdbf7ac5b883e316449dda 100644 (file)
--- a/log.c
+++ b/log.c
@@ -36,6 +36,7 @@ extern int allow_8bit_chars;
 extern int protocol_version;
 extern int always_checksum;
 extern int preserve_times;
+extern int human_readable;
 extern int msgs2stderr;
 extern int stdout_format_has_i;
 extern int stdout_format_has_o_or_i;
@@ -874,9 +875,9 @@ void log_exit(int code, const char *file, int line)
 {
        if (code == 0) {
                rprintf(FLOG,"sent %s bytes  received %s bytes  total size %s\n",
-                       comma_num(stats.total_written),
-                       comma_num(stats.total_read),
-                       comma_num(stats.total_size));
+                       big_num(stats.total_written),
+                       big_num(stats.total_read),
+                       big_num(stats.total_size));
        } else if (am_server != 2) {
                const char *name;