diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2020-04-20 11:30:28 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2020-04-20 11:30:28 +0100 |
commit | b008f54f89a3e1a0aae0c301122820b87a84d21a (patch) | |
tree | 670b7646db8ca49471c5d3d7b25d7ef72cea8dfe /src | |
parent | 1f0be89381a057aaaaa4ecd4890d4597b7f6ce80 (diff) |
OpenSSL: fix bulid on older library versions
Broken-by: a89b6bd32a
Diffstat (limited to 'src')
-rw-r--r-- | src/src/tls-openssl.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/src/tls-openssl.c b/src/src/tls-openssl.c index 26cc986c5..f7ff459b0 100644 --- a/src/src/tls-openssl.c +++ b/src/src/tls-openssl.c @@ -2765,7 +2765,10 @@ if (rc <= 0) { uschar * s = US"SSL_accept"; int r = ERR_GET_REASON(ERR_peek_error()); - if ( r == SSL_R_WRONG_VERSION_NUMBER || r == SSL_R_VERSION_TOO_LOW + if ( r == SSL_R_WRONG_VERSION_NUMBER +#ifdef SSL_R_VERSION_TOO_LOW + || r == SSL_R_VERSION_TOO_LOW +#endif || r == SSL_R_UNKNOWN_PROTOCOL || r == SSL_R_UNSUPPORTED_PROTOCOL) s = string_sprintf("%s (%s)", s, SSL_get_version(server_ssl)); (void) tls_error(s, NULL, sigalrm_seen ? US"timed out" : NULL, errstr); |