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 /mailutils/popmaildir.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 'mailutils/popmaildir.c')
-rw-r--r-- | mailutils/popmaildir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mailutils/popmaildir.c b/mailutils/popmaildir.c index 1a72b87c5..ab9ddbaed 100644 --- a/mailutils/popmaildir.c +++ b/mailutils/popmaildir.c | |||
@@ -73,9 +73,9 @@ int popmaildir_main(int argc UNUSED_PARAM, char **argv) | |||
73 | // parse options | 73 | // parse options |
74 | opt_complementary = "-1:dd:t+:R+:L+:H+"; | 74 | opt_complementary = "-1:dd:t+:R+:L+:H+"; |
75 | opts = getopt32(argv, | 75 | opts = getopt32(argv, |
76 | "bdmVcasTkt:" "R:Z:L:H:" USE_FEATURE_POPMAILDIR_DELIVERY("M:F:"), | 76 | "bdmVcasTkt:" "R:Z:L:H:" IF_FEATURE_POPMAILDIR_DELIVERY("M:F:"), |
77 | &timeout, NULL, NULL, NULL, &opt_nlines | 77 | &timeout, NULL, NULL, NULL, &opt_nlines |
78 | USE_FEATURE_POPMAILDIR_DELIVERY(, &delivery, &delivery) // we treat -M and -F the same | 78 | IF_FEATURE_POPMAILDIR_DELIVERY(, &delivery, &delivery) // we treat -M and -F the same |
79 | ); | 79 | ); |
80 | //argc -= optind; | 80 | //argc -= optind; |
81 | argv += optind; | 81 | argv += optind; |