aboutsummaryrefslogtreecommitdiffstats
path: root/progress.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2007-08-01 22:35:54 +0000
committerWayne Davison <wayned@samba.org>2007-08-01 22:35:54 +0000
commitd1d0a7051fb1493fa774f8e9a3aa0ff2b1808df2 (patch)
tree7c1f2ee50fe80435ad7de62d77f047cb7dc544b3 /progress.c
parent444f9f7b04055c56fe771dec011b27200de3703f (diff)
downloadandroid_external_rsync-d1d0a7051fb1493fa774f8e9a3aa0ff2b1808df2.tar.gz
android_external_rsync-d1d0a7051fb1493fa774f8e9a3aa0ff2b1808df2.tar.bz2
android_external_rsync-d1d0a7051fb1493fa774f8e9a3aa0ff2b1808df2.zip
Don't output a negative time-remaining value if the file has grown.
Diffstat (limited to 'progress.c')
-rw-r--r--progress.c19
1 files changed, 11 insertions, 8 deletions
diff --git a/progress.c b/progress.c
index 73ad8389..476dd4d0 100644
--- a/progress.c
+++ b/progress.c
@@ -59,12 +59,11 @@ static unsigned long msdiff(struct timeval *t1, struct timeval *t2)
static void rprint_progress(OFF_T ofs, OFF_T size, struct timeval *now,
int is_last)
{
- char eol[256];
+ char rembuf[64], eol[128];
const char *units;
int pct = ofs == size ? 100 : (int) (100.0 * ofs / size);
unsigned long diff;
double rate, remain;
- int remain_h, remain_m, remain_s;
if (is_last) {
/* Compute stats based on the starting info. */
@@ -93,9 +92,14 @@ static void rprint_progress(OFF_T ofs, OFF_T size, struct timeval *now,
units = "kB/s";
}
- remain_s = (int) remain % 60;
- remain_m = (int) (remain / 60.0) % 60;
- remain_h = (int) (remain / 3600.0);
+ if (remain < 0)
+ strlcpy(rembuf, " ??:??:??", sizeof rembuf);
+ else {
+ snprintf(rembuf, sizeof rembuf, "%4d:%02d:%02d",
+ (int) (remain / 3600.0),
+ (int) (remain / 60.0) % 60,
+ (int) remain % 60);
+ }
if (is_last) {
snprintf(eol, sizeof eol, " (xfer#%d, to-check=%d/%d)\n",
@@ -104,9 +108,8 @@ static void rprint_progress(OFF_T ofs, OFF_T size, struct timeval *now,
stats.num_files);
} else
strlcpy(eol, "\r", sizeof eol);
- rprintf(FCLIENT, "%12s %3d%% %7.2f%s %4d:%02d:%02d%s",
- human_num(ofs), pct, rate, units,
- remain_h, remain_m, remain_s, eol);
+ rprintf(FCLIENT, "%12s %3d%% %7.2f%s %s%s",
+ human_num(ofs), pct, rate, units, rembuf, eol);
}
void end_progress(OFF_T size)