diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-21 11:09:40 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-21 11:09:40 +0000 |
commit | 5e34ff29bcc870936ab18172f438a34d042d4e03 (patch) | |
tree | a5e7a528f2f916eb883f1161eadceacdf2dca4be /networking/wget.c | |
parent | 8b814b4a349e2262c0ad25793b05206a14651ebb (diff) | |
download | busybox-w32-5e34ff29bcc870936ab18172f438a34d042d4e03.tar.gz busybox-w32-5e34ff29bcc870936ab18172f438a34d042d4e03.tar.bz2 busybox-w32-5e34ff29bcc870936ab18172f438a34d042d4e03.zip |
*: mass renaming of USE_XXXX to IF_XXXX
and SKIP_XXXX to IF_NOT_XXXX - the second one was especially
badly named. It was not skipping anything!
Diffstat (limited to 'networking/wget.c')
-rw-r--r-- | networking/wget.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/wget.c b/networking/wget.c index 48759049d..ca3acd085 100644 --- a/networking/wget.c +++ b/networking/wget.c | |||
@@ -497,14 +497,14 @@ int wget_main(int argc UNUSED_PARAM, char **argv) | |||
497 | applet_long_options = wget_longopts; | 497 | applet_long_options = wget_longopts; |
498 | #endif | 498 | #endif |
499 | /* server.allocated = target.allocated = NULL; */ | 499 | /* server.allocated = target.allocated = NULL; */ |
500 | opt_complementary = "-1" USE_FEATURE_WGET_LONG_OPTIONS(":\xfe::"); | 500 | opt_complementary = "-1" IF_FEATURE_WGET_LONG_OPTIONS(":\xfe::"); |
501 | opt = getopt32(argv, "csqO:P:Y:U:" /*ignored:*/ "t:T:", | 501 | opt = getopt32(argv, "csqO:P:Y:U:" /*ignored:*/ "t:T:", |
502 | &fname_out, &dir_prefix, | 502 | &fname_out, &dir_prefix, |
503 | &proxy_flag, &user_agent, | 503 | &proxy_flag, &user_agent, |
504 | NULL, /* -t RETRIES */ | 504 | NULL, /* -t RETRIES */ |
505 | NULL /* -T NETWORK_READ_TIMEOUT */ | 505 | NULL /* -T NETWORK_READ_TIMEOUT */ |
506 | USE_FEATURE_WGET_LONG_OPTIONS(, &headers_llist) | 506 | IF_FEATURE_WGET_LONG_OPTIONS(, &headers_llist) |
507 | USE_FEATURE_WGET_LONG_OPTIONS(, &post_data) | 507 | IF_FEATURE_WGET_LONG_OPTIONS(, &post_data) |
508 | ); | 508 | ); |
509 | if (strcmp(proxy_flag, "off") == 0) { | 509 | if (strcmp(proxy_flag, "off") == 0) { |
510 | /* Use the proxy if necessary */ | 510 | /* Use the proxy if necessary */ |