diff options
Diffstat (limited to 'networking/wget.c')
-rw-r--r-- | networking/wget.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/wget.c b/networking/wget.c index d944f0173..7b583c7ab 100644 --- a/networking/wget.c +++ b/networking/wget.c | |||
@@ -109,9 +109,9 @@ int wget_main(int argc, char **argv) | |||
109 | FILE *sfp = NULL; /* socket to web/ftp server */ | 109 | FILE *sfp = NULL; /* socket to web/ftp server */ |
110 | FILE *dfp = NULL; /* socket to ftp server (data) */ | 110 | FILE *dfp = NULL; /* socket to ftp server (data) */ |
111 | char *fname_out = NULL; /* where to direct output (-O) */ | 111 | char *fname_out = NULL; /* where to direct output (-O) */ |
112 | bool got_clen = 0; /* got content-length: from server */ | 112 | bool got_clen = 0; /* got content-length: from server */ |
113 | int output_fd = -1; | 113 | int output_fd = -1; |
114 | bool use_proxy = 1; /* Use proxies if env vars are set */ | 114 | bool use_proxy = 1; /* Use proxies if env vars are set */ |
115 | const char *proxy_flag = "on"; /* Use proxies if env vars are set */ | 115 | const char *proxy_flag = "on"; /* Use proxies if env vars are set */ |
116 | const char *user_agent = "Wget";/* "User-Agent" header field */ | 116 | const char *user_agent = "Wget";/* "User-Agent" header field */ |
117 | static const char keywords[] = | 117 | static const char keywords[] = |