View | Details | Raw Unified | Return to bug 31752
Collapse All | Expand All

(-)a/src/tls/tls_client.c (-1 / +4 lines)
Lines 296-302 TLS_APPL_STATE *tls_client_init(const TLS_CLIENT_INIT_PROPS *props) Link Here
296
    /*
296
    /*
297
     * Detect mismatch between compile-time headers and run-time library.
297
     * Detect mismatch between compile-time headers and run-time library.
298
     */
298
     */
299
    tls_check_version();
299
    /*
300
     * ALT #31752: use ABI check instead
301
     * tls_check_version();
302
     */
300
303
301
    /*
304
    /*
302
     * Initialize the OpenSSL library by the book! To start with, we must
305
     * Initialize the OpenSSL library by the book! To start with, we must
(-)a/src/tls/tls_dane.c (-1 / +3 lines)
Lines 2157-2163 static SSL_CTX *ctx_init(const char *CAfile) Link Here
2157
    SSL_CTX *client_ctx;
2157
    SSL_CTX *client_ctx;
2158
2158
2159
    tls_param_init();
2159
    tls_param_init();
2160
    tls_check_version();
2160
    /* ALT #31752: use ABI check instead
2161
     * tls_check_version();
2162
     */
2161
2163
2162
    SSL_load_error_strings();
2164
    SSL_load_error_strings();
2163
    SSL_library_init();
2165
    SSL_library_init();
(-)a/src/tls/tls_server.c (-2 / +3 lines)
Lines 353-359 TLS_APPL_STATE *tls_server_init(const TLS_SERVER_INIT_PROPS *props) Link Here
353
    /*
353
    /*
354
     * Detect mismatch between compile-time headers and run-time library.
354
     * Detect mismatch between compile-time headers and run-time library.
355
     */
355
     */
356
    tls_check_version();
356
    /* ALT #31752: use ABI check instead
357
     * tls_check_version();
358
     */
357
359
358
    /*
360
    /*
359
     * Initialize the OpenSSL library by the book! To start with, we must
361
     * Initialize the OpenSSL library by the book! To start with, we must
360
- 

Return to bug 31752