diff options
author | Phil Pennock <pdp@exim.org> | 2012-05-17 11:21:54 -0400 |
---|---|---|
committer | Phil Pennock <pdp@exim.org> | 2012-05-17 11:21:54 -0400 |
commit | b1770b6e4e865e3422e18e903b8e918df8802aa0 (patch) | |
tree | a7ca73d3e5946500fa0cb155a97b1a2a8f7b4f79 /src | |
parent | 83e2f8a2515d1cd787ac68b052f6e4539dd48752 (diff) |
4.78 -> 4.80
Diffstat (limited to 'src')
-rw-r--r-- | src/src/readconf.c | 2 | ||||
-rw-r--r-- | src/src/tls-openssl.c | 2 | ||||
-rw-r--r-- | src/src/transports/smtp.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/src/readconf.c b/src/src/readconf.c index 95e155ff3..6b8f8d23e 100644 --- a/src/src/readconf.c +++ b/src/src/readconf.c @@ -235,7 +235,7 @@ static optionlist optionlist_config[] = { { "gecos_pattern", opt_stringptr, &gecos_pattern }, #ifdef SUPPORT_TLS { "gnutls_compat_mode", opt_bool, &gnutls_compat_mode }, - /* These three gnutls_require_* options stopped working in Exim 4.78 */ + /* These three gnutls_require_* options stopped working in Exim 4.80 */ { "gnutls_require_kx", opt_stringptr, &gnutls_require_kx }, { "gnutls_require_mac", opt_stringptr, &gnutls_require_mac }, { "gnutls_require_protocols", opt_stringptr, &gnutls_require_proto }, diff --git a/src/src/tls-openssl.c b/src/src/tls-openssl.c index e485aa67d..4cdb28905 100644 --- a/src/src/tls-openssl.c +++ b/src/src/tls-openssl.c @@ -1751,7 +1751,7 @@ uschar keep_c; BOOL adding, item_parsed; result = 0L; -/* Prior to 4.78 we or'd in SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS; removed +/* Prior to 4.80 we or'd in SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS; removed * from default because it increases BEAST susceptibility. */ if (option_spec == NULL) diff --git a/src/src/transports/smtp.c b/src/src/transports/smtp.c index b01322662..e317c095c 100644 --- a/src/src/transports/smtp.c +++ b/src/src/transports/smtp.c @@ -62,7 +62,7 @@ optionlist smtp_transport_options[] = { { "gethostbyname", opt_bool, (void *)offsetof(smtp_transport_options_block, gethostbyname) }, #ifdef SUPPORT_TLS - /* These are no longer honoured, as of Exim 4.78; for now, we silently + /* These are no longer honoured, as of Exim 4.80; for now, we silently ignore; a later release will warn, and a later-still release will remove these options, so that using them becomes an error. */ { "gnutls_require_kx", opt_stringptr, |