From d939bf77d24e20be2a2f12cfb43095a4f9c6eff5 Mon Sep 17 00:00:00 2001 From: Dag-Erling Smørgrav Date: Fri, 21 Jul 2000 11:08:03 +0000 Subject: Don't display a running count in quiet mode. Don't add the offset to the size; it's libfetch's job to report the correct size of the requested file. --- usr.bin/fetch/fetch.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'usr.bin/fetch') diff --git a/usr.bin/fetch/fetch.c b/usr.bin/fetch/fetch.c index 18e55691e89c..fd97d5c1c681 100644 --- a/usr.bin/fetch/fetch.c +++ b/usr.bin/fetch/fetch.c @@ -113,7 +113,7 @@ stat_display(struct xferstat *xs, int force) { struct timeval now; - if (!v_tty) + if (!v_tty || !v_level) return; gettimeofday(&now, NULL); @@ -290,6 +290,12 @@ fetch(char *URL, char *path) goto success; } + if (v_level > 1) { + if (sb.st_size) + warnx("local: %lld / %ld", sb.st_size, sb.st_mtime); + warnx("remote: %lld / %ld", us.size, us.mtime); + } + /* open output file */ if (o_stdout) { /* output to stdout */ @@ -307,7 +313,6 @@ fetch(char *URL, char *path) if (sigint) goto signal; } else { - us.size += url->offset; if (us.size == sb.st_size) /* nothing to do */ goto success; -- cgit v1.3