mirror of
https://github.com/apache/httpd.git
synced 2025-08-07 04:02:58 +03:00
Support for OpenSSL 1.1.0:
- ERR_remove_thread_state() no longer has an argument. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1735878 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -318,7 +318,11 @@ static apr_status_t ssl_cleanup_pre_config(void *data)
|
|||||||
ENGINE_cleanup();
|
ENGINE_cleanup();
|
||||||
#endif
|
#endif
|
||||||
#if OPENSSL_VERSION_NUMBER >= 0x1000000fL
|
#if OPENSSL_VERSION_NUMBER >= 0x1000000fL
|
||||||
|
#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
||||||
ERR_remove_thread_state(NULL);
|
ERR_remove_thread_state(NULL);
|
||||||
|
#else
|
||||||
|
ERR_remove_thread_state();
|
||||||
|
#endif
|
||||||
#else
|
#else
|
||||||
ERR_remove_state(0);
|
ERR_remove_state(0);
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user