Output the progress message as FCLIENT instead of FINFO.
authorWayne Davison <wayned@samba.org>
Tue, 9 May 2006 18:31:19 +0000 (18:31 +0000)
committerWayne Davison <wayned@samba.org>
Tue, 9 May 2006 18:31:19 +0000 (18:31 +0000)
progress.c

index bd45ef1..3cf2ad7 100644 (file)
@@ -105,7 +105,7 @@ static void rprint_progress(OFF_T ofs, OFF_T size, struct timeval *now,
                        stats.num_files);
        } else
                strcpy(eol, "\r");
-       rprintf(FINFO, "%12s %3d%% %7.2f%s %4d:%02d:%02d%s",
+       rprintf(FCLIENT, "%12s %3d%% %7.2f%s %4d:%02d:%02d%s",
                human_num(ofs), pct, rate, units,
                remain_h, remain_m, remain_s, eol);
 }