From dd49ca170f19d8a4f8ceb67f4ad9b04c5137f3ff Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Tue, 17 Jul 2012 16:29:22 +0200 Subject: download: Avoid progress bar for downloads as it causes corrupt downloads --- src/download.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/download.c') diff --git a/src/download.c b/src/download.c index e329f6b..717f2dc 100644 --- a/src/download.c +++ b/src/download.c @@ -93,7 +93,7 @@ int download_progress(void *clientp, double dltotal, double dlnow, double ultota if (p < 100.0f) { if ((int)p > lastprogress) { - print_progress_bar(p); + info("downloading: %d%%\n", (int)p); lastprogress = (int)p; } } -- cgit v1.1-32-gdbae