Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2014-03-27 19:50:29 +0400
committerDenys Vlasenko <vda.linux@googlemail.com>2014-03-27 19:50:29 +0400
commitfaa9e94db619d1110061687278cde93a651e69de (patch)
tree50c506f8061cc38eed03e5eb39d6788d14086097 /networking
parent0a53b203f9e7157136c8ab4e8753008a63a56660 (diff)
wget: fix a case where progress bar isn't updated if writes are very slow
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r--networking/wget.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/networking/wget.c b/networking/wget.c
index 62a5fcc02..1013f66cb 100644
--- a/networking/wget.c
+++ b/networking/wget.c
@@ -640,7 +640,7 @@ static void NOINLINE retrieve_file_data(FILE *dfp)
#if ENABLE_FEATURE_WGET_TIMEOUT
second_cnt = G.timeout_seconds;
#endif
- continue;
+ goto bump;
}
/* n <= 0.
@@ -673,11 +673,12 @@ static void NOINLINE retrieve_file_data(FILE *dfp)
* to try reading anyway.
*/
}
+#endif
+ bump:
/* Need to do it _every_ second for "stalled" indicator
* to be shown properly.
*/
progress_meter(PROGRESS_BUMP);
-#endif
} /* while (reading data) */
#if ENABLE_FEATURE_WGET_STATUSBAR || ENABLE_FEATURE_WGET_TIMEOUT