From f10d3c511352cec7086c0ed516a046c68e54f911 Mon Sep 17 00:00:00 2001 From: Bill Fenner Date: Tue, 12 Nov 2002 07:09:43 +0000 Subject: [PATCH] Don't divide by zero to calculate the ETA, even if we haven't gotten any data in 30 seconds. --- usr.bin/fetch/fetch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/fetch/fetch.c b/usr.bin/fetch/fetch.c index f863ef53951..1cccc3a467e 100644 --- a/usr.bin/fetch/fetch.c +++ b/usr.bin/fetch/fetch.c @@ -150,7 +150,7 @@ stat_display(struct xferstat *xs, int force) fprintf(stderr, " (%lld bytes): %d%%", (long long)xs->size, (int)((100.0 * xs->rcvd) / xs->size)); elapsed = xs->last.tv_sec - xs->start.tv_sec; - if (elapsed > 30) { + if (elapsed > 30 && xs->rcvd > 0) { long remaining; remaining = ((xs->size * elapsed) / xs->rcvd) - elapsed;