aboutsummaryrefslogtreecommitdiff
path: root/mailutils/sendmail.c
diff options
context:
space:
mode:
Diffstat (limited to 'mailutils/sendmail.c')
-rw-r--r--mailutils/sendmail.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mailutils/sendmail.c b/mailutils/sendmail.c
index 5143fac8f..fb4dbb3da 100644
--- a/mailutils/sendmail.c
+++ b/mailutils/sendmail.c
@@ -247,11 +247,11 @@ int sendmail_main(int argc UNUSED_PARAM, char **argv)
247 247
248 // parse options 248 // parse options
249 // -v is a counter, -H and -S are mutually exclusive, -a is a list 249 // -v is a counter, -H and -S are mutually exclusive, -a is a list
250 opt_complementary = "vv:w+:H--S:S--H:a::"; 250 opt_complementary = "vv:H--S:S--H";
251 // N.B. since -H and -S are mutually exclusive they do not interfere in opt_connect 251 // N.B. since -H and -S are mutually exclusive they do not interfere in opt_connect
252 // -a is for ssmtp (http://downloads.openwrt.org/people/nico/man/man8/ssmtp.8.html) compatibility, 252 // -a is for ssmtp (http://downloads.openwrt.org/people/nico/man/man8/ssmtp.8.html) compatibility,
253 // it is still under development. 253 // it is still under development.
254 opts = getopt32(argv, "tf:o:iw:H:S:a::v", &opt_from, NULL, 254 opts = getopt32(argv, "tf:o:iw:+H:S:a:*:v", &opt_from, NULL,
255 &timeout, &opt_connect, &opt_connect, &list, &verbose); 255 &timeout, &opt_connect, &opt_connect, &list, &verbose);
256 //argc -= optind; 256 //argc -= optind;
257 argv += optind; 257 argv += optind;