[git commit] wget: fix a case where progress bar isn't updated if writes are very slow

Denys Vlasenko vda.linux at googlemail.com
Thu Mar 27 15:50:29 UTC 2014


commit: http://git.busybox.net/busybox/commit/?id=faa9e94db619d1110061687278cde93a651e69de
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 networking/wget.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/networking/wget.c b/networking/wget.c
index 62a5fcc..1013f66 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


More information about the busybox-cvs mailing list