X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/8bd77e7098d9863f258070fb2274e324a446adbd..6d56efa6ea66afa2e6f4eb79d9dd5f3b54b723c3:/io.c diff --git a/io.c b/io.c index 6a91ffd5..6e5c2329 100644 --- a/io.c +++ b/io.c @@ -408,7 +408,7 @@ static void read_msg_fd(void) /* Read extra file list from receiver. */ assert(iobuf_in != NULL); assert(iobuf_f_in == fd); - if (verbose > 3) { + if (DEBUG_GTE(FLIST, 2)) { rprintf(FINFO, "[%s] receiving flist for dir %d\n", who_am_i(), IVAL(buf,0)); } @@ -629,8 +629,8 @@ static void whine_about_eof(int fd) } rprintf(FERROR, RSYNC_NAME ": connection unexpectedly closed " - "(%.0f bytes received so far) [%s]\n", - (double)stats.total_read, who_am_i()); + "(%s bytes received so far) [%s]\n", + big_num(stats.total_read, 0), who_am_i()); exit_cleanup(RERR_STREAMIO); }