diff options
author | Denis Vlasenko | 2006-10-10 21:00:47 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-10 21:00:47 +0000 |
commit | cba9ef5523f09ecc3240f9f6efcdd0440c652c91 (patch) | |
tree | 79a2f859df1f6eef15defd02bd2f453735ed327e /networking | |
parent | 1ac42bf66e2c181b886e89f9222cae65676c9e8a (diff) | |
download | busybox-cba9ef5523f09ecc3240f9f6efcdd0440c652c91.zip busybox-cba9ef5523f09ecc3240f9f6efcdd0440c652c91.tar.gz |
fixes from Vladimir Dronnikov <dronnikov@gmail.ru>
Diffstat (limited to 'networking')
-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 74feccc..264ae44 100644 --- a/networking/wget.c +++ b/networking/wget.c @@ -31,7 +31,9 @@ static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf); /* Globals (can be accessed from signal handlers */ static off_t content_len; /* Content-length of the file */ static off_t beg_range; /* Range at which continue begins */ +#ifdef CONFIG_FEATURE_WGET_STATUSBAR static off_t transferred; /* Number of bytes transferred so far */ +#endif static int chunked; /* chunked transfer encoding */ #ifdef CONFIG_FEATURE_WGET_STATUSBAR static void progressmeter(int flag); |