diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2020-07-05 14:13:41 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2020-07-05 14:13:41 +0000 |
commit | 7dca9547aa6ca885de53a2f5e7ba6d1938cf8293 (patch) | |
tree | 7fa904c9d9e0aa9212692ace3cb8f8c0457af52c /mail/sendmail/files/patch-readcf.c | |
parent | - keep STAGEDIR clean (diff) |
- update to 8.16.1
Diffstat (limited to 'mail/sendmail/files/patch-readcf.c')
-rw-r--r-- | mail/sendmail/files/patch-readcf.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/mail/sendmail/files/patch-readcf.c b/mail/sendmail/files/patch-readcf.c index a6aad5c00495..3eb727ec8127 100644 --- a/mail/sendmail/files/patch-readcf.c +++ b/mail/sendmail/files/patch-readcf.c @@ -1,26 +1,26 @@ ---- sendmail/readcf.c.orig 2015-06-17 16:51:58 UTC +--- sendmail/readcf.c.orig 2020-06-02 09:41:43 UTC +++ sendmail/readcf.c -@@ -2910,6 +2910,10 @@ static struct optioninfo +@@ -2979,6 +2979,10 @@ static struct optioninfo + { "SetCertAltnames", O_CHECKALTNAMES, OI_NONE }, #endif - #define O_USECOMPRESSEDIPV6ADDRESSES 0xec - { "UseCompressedIPv6Addresses", O_USECOMPRESSEDIPV6ADDRESSES, OI_NONE }, + +#if USE_BLACKLIST +# define O_BLACKLIST 0xf2 + { "UseBlacklist", O_BLACKLIST, OI_NONE }, +#endif - { NULL, '\0', OI_NONE } }; -@@ -4540,6 +4544,12 @@ setoption(opt, val, safe, sticky, e) - UseCompressedIPv6Addresses = atobool(val); - break; +@@ -4678,6 +4682,12 @@ setoption(opt, val, safe, sticky, e) + SetCertAltnames = atobool(val); + break; + # endif ++ +#if USE_BLACKLIST + case O_BLACKLIST: + UseBlacklist = atobool(val); + break; +#endif -+ + default: if (tTd(37, 1)) - { |