From 540ab7097c2932e8ef9e3bbb6abf5604c05acdde Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sun, 29 Jun 2008 00:32:35 +0000 Subject: wget: "support" -t and -T by ignoring them --- networking/wget.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'networking') 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) #endif /* server.allocated = target.allocated = NULL; */ opt_complementary = "-1" USE_FEATURE_WGET_LONG_OPTIONS(":\xfe::"); - opt = getopt32(argv, "csqO:P:Y:U:", + opt = getopt32(argv, "csqO:P:Y:U:" /*ignored:*/ "t:T:", &fname_out, &dir_prefix, - &proxy_flag, &user_agent + &proxy_flag, &user_agent, + NULL, /* -t RETRIES */ + NULL /* -T NETWORK_READ_TIMEOUT */ USE_FEATURE_WGET_LONG_OPTIONS(, &headers_llist) ); if (strcmp(proxy_flag, "off") == 0) { -- cgit v1.2.3