aboutsummaryrefslogtreecommitdiff
path: root/mailutils
diff options
context:
space:
mode:
Diffstat (limited to 'mailutils')
-rw-r--r--mailutils/mime.c6
-rw-r--r--mailutils/popmaildir.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/mailutils/mime.c b/mailutils/mime.c
index bda727b7c..d309d7f7f 100644
--- a/mailutils/mime.c
+++ b/mailutils/mime.c
@@ -341,11 +341,11 @@ int reformime_main(int argc UNUSED_PARAM, char **argv)
341 341
342 // parse options 342 // parse options
343 // N.B. only -x and -X are supported so far 343 // N.B. only -x and -X are supported so far
344 opt_complementary = "x--X:X--x" USE_FEATURE_REFORMIME_COMPAT(":m::"); 344 opt_complementary = "x--X:X--x" IF_FEATURE_REFORMIME_COMPAT(":m::");
345 opts = getopt32(argv, 345 opts = getopt32(argv,
346 "x:X" USE_FEATURE_REFORMIME_COMPAT("deis:r:c:m:h:o:O:"), 346 "x:X" IF_FEATURE_REFORMIME_COMPAT("deis:r:c:m:h:o:O:"),
347 &opt_prefix 347 &opt_prefix
348 USE_FEATURE_REFORMIME_COMPAT(, NULL, NULL, &G.opt_charset, NULL, NULL, NULL, NULL) 348 IF_FEATURE_REFORMIME_COMPAT(, NULL, NULL, &G.opt_charset, NULL, NULL, NULL, NULL)
349 ); 349 );
350 //argc -= optind; 350 //argc -= optind;
351 argv += optind; 351 argv += optind;
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;