aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--networking/wget.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/networking/wget.c b/networking/wget.c
index b45811533..8606b9b38 100644
--- a/networking/wget.c
+++ b/networking/wget.c
@@ -449,9 +449,11 @@ int wget_main(int argc ATTRIBUTE_UNUSED, char **argv)
449#endif 449#endif
450 /* server.allocated = target.allocated = NULL; */ 450 /* server.allocated = target.allocated = NULL; */
451 opt_complementary = "-1" USE_FEATURE_WGET_LONG_OPTIONS(":\xfe::"); 451 opt_complementary = "-1" USE_FEATURE_WGET_LONG_OPTIONS(":\xfe::");
452 opt = getopt32(argv, "csqO:P:Y:U:", 452 opt = getopt32(argv, "csqO:P:Y:U:" /*ignored:*/ "t:T:",
453 &fname_out, &dir_prefix, 453 &fname_out, &dir_prefix,
454 &proxy_flag, &user_agent 454 &proxy_flag, &user_agent,
455 NULL, /* -t RETRIES */
456 NULL /* -T NETWORK_READ_TIMEOUT */
455 USE_FEATURE_WGET_LONG_OPTIONS(, &headers_llist) 457 USE_FEATURE_WGET_LONG_OPTIONS(, &headers_llist)
456 ); 458 );
457 if (strcmp(proxy_flag, "off") == 0) { 459 if (strcmp(proxy_flag, "off") == 0) {