wget: "support" -t and -T by ignoring them
authorDenis Vlasenko <vda.linux@googlemail.com>
Sun, 29 Jun 2008 00:32:35 +0000 (00:32 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Sun, 29 Jun 2008 00:32:35 +0000 (00:32 -0000)
networking/wget.c

index b458115..8606b9b 100644 (file)
@@ -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) {