From: Denis Vlasenko Date: Sun, 29 Jun 2008 00:32:35 +0000 (-0000) Subject: wget: "support" -t and -T by ignoring them X-Git-Tag: 1_12_0~269 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=540ab7097c2932e8ef9e3bbb6abf5604c05acdde;p=platform%2Fupstream%2Fbusybox.git wget: "support" -t and -T by ignoring them --- diff --git a/networking/wget.c b/networking/wget.c index b458115..8606b9b 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) {