aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2011-02-11 19:09:30 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2011-02-11 19:09:30 +0100
commitab8d00d64fc23602875952c08c030f05f206686c (patch)
tree62832c02ad648d25a9395f26d59220ba932b8f88 /networking
parentd55e13964916af6a083be881bffdb493af287c1d (diff)
downloadbusybox-w32-ab8d00d64fc23602875952c08c030f05f206686c.tar.gz
busybox-w32-ab8d00d64fc23602875952c08c030f05f206686c.tar.bz2
busybox-w32-ab8d00d64fc23602875952c08c030f05f206686c.zip
progress meter: fix bugs found in stall detection and unknown size logic
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r--networking/tftp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/tftp.c b/networking/tftp.c
index 2a3991755..35cf0dbd9 100644
--- a/networking/tftp.c
+++ b/networking/tftp.c
@@ -119,7 +119,7 @@ static void tftp_progress_done(void)
119 if (is_bb_progress_inited(&G.pmt)) { 119 if (is_bb_progress_inited(&G.pmt)) {
120 tftp_progress_update(); 120 tftp_progress_update();
121 bb_putchar_stderr('\n'); 121 bb_putchar_stderr('\n');
122 bb_progress_free(p); 122 bb_progress_free(&G.pmt);
123 } 123 }
124} 124}
125#else 125#else