@@ -, +, @@ --- src/tls/tls_client.c | 5 ++++- src/tls/tls_dane.c | 4 +++- src/tls/tls_server.c | 4 +++- 3 files changed, 10 insertions(+), 3 deletions(-) --- a/src/tls/tls_client.c +++ a/src/tls/tls_client.c @@ -296,7 +296,10 @@ TLS_APPL_STATE *tls_client_init(const TLS_CLIENT_INIT_PROPS *props) /* * Detect mismatch between compile-time headers and run-time library. */ - tls_check_version(); + /* + * ALT #31752: use ABI check instead + * tls_check_version(); + */ /* * Initialize the OpenSSL library by the book! To start with, we must --- a/src/tls/tls_dane.c +++ a/src/tls/tls_dane.c @@ -2157,7 +2157,9 @@ static SSL_CTX *ctx_init(const char *CAfile) SSL_CTX *client_ctx; tls_param_init(); - tls_check_version(); + /* ALT #31752: use ABI check instead + * tls_check_version(); + */ SSL_load_error_strings(); SSL_library_init(); --- a/src/tls/tls_server.c +++ a/src/tls/tls_server.c @@ -353,7 +353,9 @@ TLS_APPL_STATE *tls_server_init(const TLS_SERVER_INIT_PROPS *props) /* * Detect mismatch between compile-time headers and run-time library. */ - tls_check_version(); + /* ALT #31752: use ABI check instead + * tls_check_version(); + */ /* * Initialize the OpenSSL library by the book! To start with, we must --