aboutsummaryrefslogtreecommitdiff
path: root/networking/wget.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-10-10 21:00:47 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-10-10 21:00:47 +0000
commitcba9ef5523f09ecc3240f9f6efcdd0440c652c91 (patch)
tree79a2f859df1f6eef15defd02bd2f453735ed327e /networking/wget.c
parent1ac42bf66e2c181b886e89f9222cae65676c9e8a (diff)
downloadbusybox-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.c2
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 */
32static off_t content_len; /* Content-length of the file */ 32static off_t content_len; /* Content-length of the file */
33static off_t beg_range; /* Range at which continue begins */ 33static off_t beg_range; /* Range at which continue begins */
34#ifdef CONFIG_FEATURE_WGET_STATUSBAR
34static off_t transferred; /* Number of bytes transferred so far */ 35static off_t transferred; /* Number of bytes transferred so far */
36#endif
35static int chunked; /* chunked transfer encoding */ 37static int chunked; /* chunked transfer encoding */
36#ifdef CONFIG_FEATURE_WGET_STATUSBAR 38#ifdef CONFIG_FEATURE_WGET_STATUSBAR
37static void progressmeter(int flag); 39static void progressmeter(int flag);