diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-02-11 19:09:30 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-02-11 19:09:30 +0100 |
commit | ab8d00d64fc23602875952c08c030f05f206686c (patch) | |
tree | 62832c02ad648d25a9395f26d59220ba932b8f88 /networking | |
parent | d55e13964916af6a083be881bffdb493af287c1d (diff) | |
download | busybox-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.c | 2 |
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 |