summaryrefslogtreecommitdiffstats
path: root/usr.bin/fetch
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2000-07-21 11:08:03 +0000
committerdes <des@FreeBSD.org>2000-07-21 11:08:03 +0000
commitd81bffbebbe5d88ad3abc711866d45435b7653bd (patch)
tree1e46d520114477f72467136d55f5c11453d1738a /usr.bin/fetch
parentaccb02b55adca56cf39b820f13f7c5fe5c836912 (diff)
downloadFreeBSD-src-d81bffbebbe5d88ad3abc711866d45435b7653bd.zip
FreeBSD-src-d81bffbebbe5d88ad3abc711866d45435b7653bd.tar.gz
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.
Diffstat (limited to 'usr.bin/fetch')
-rw-r--r--usr.bin/fetch/fetch.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/usr.bin/fetch/fetch.c b/usr.bin/fetch/fetch.c
index 18e5569..fd97d5c 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;
OpenPOWER on IntegriCloud