From c7821cf30e69fad772e7a447a445b471848c86f8 Mon Sep 17 00:00:00 2001 From: "K. Lange" Date: Thu, 17 Jun 2021 08:33:55 +0900 Subject: [PATCH] fetch: switch forced progress updates back off --- apps/fetch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/fetch.c b/apps/fetch.c index e5609c93..4b51600e 100644 --- a/apps/fetch.c +++ b/apps/fetch.c @@ -234,7 +234,7 @@ int http_fetch(FILE * f) { size_t r = fread(buf, 1, bytes_to_read < 1024 ? bytes_to_read : 1024, f); fwrite(buf, 1, r, fetch_options.out); fetch_options.size += r; - print_progress(1); + print_progress(0); if (fetch_options.machine_readable && fetch_options.content_length) { fprintf(stdout,"%d %d\n",(int)fetch_options.size, (int)fetch_options.content_length); }