diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-10 21:00:47 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-10 21:00:47 +0000 |
commit | cba9ef5523f09ecc3240f9f6efcdd0440c652c91 (patch) | |
tree | 79a2f859df1f6eef15defd02bd2f453735ed327e /networking/wget.c | |
parent | 1ac42bf66e2c181b886e89f9222cae65676c9e8a (diff) | |
download | busybox-w32-cba9ef5523f09ecc3240f9f6efcdd0440c652c91.tar.gz busybox-w32-cba9ef5523f09ecc3240f9f6efcdd0440c652c91.tar.bz2 busybox-w32-cba9ef5523f09ecc3240f9f6efcdd0440c652c91.zip |
fixes from Vladimir Dronnikov <dronnikov@gmail.ru>
Diffstat (limited to 'networking/wget.c')
-rw-r--r-- | networking/wget.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/networking/wget.c b/networking/wget.c index 74feccc36..264ae4483 100644 --- a/networking/wget.c +++ b/networking/wget.c | |||
@@ -31,7 +31,9 @@ static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf); | |||
31 | /* Globals (can be accessed from signal handlers */ | 31 | /* Globals (can be accessed from signal handlers */ |
32 | static off_t content_len; /* Content-length of the file */ | 32 | static off_t content_len; /* Content-length of the file */ |
33 | static off_t beg_range; /* Range at which continue begins */ | 33 | static off_t beg_range; /* Range at which continue begins */ |
34 | #ifdef CONFIG_FEATURE_WGET_STATUSBAR | ||
34 | static off_t transferred; /* Number of bytes transferred so far */ | 35 | static off_t transferred; /* Number of bytes transferred so far */ |
36 | #endif | ||
35 | static int chunked; /* chunked transfer encoding */ | 37 | static int chunked; /* chunked transfer encoding */ |
36 | #ifdef CONFIG_FEATURE_WGET_STATUSBAR | 38 | #ifdef CONFIG_FEATURE_WGET_STATUSBAR |
37 | static void progressmeter(int flag); | 39 | static void progressmeter(int flag); |