mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-19 09:15:30 +03:00
22 lines
848 B
Diff
22 lines
848 B
Diff
diff --git a/contrib/mod_auth_otp/crypto.c b/contrib/mod_auth_otp/crypto.c
|
|
index c479d56..9a6ccc1 100644
|
|
--- a/contrib/mod_auth_otp/crypto.c
|
|
+++ b/contrib/mod_auth_otp/crypto.c
|
|
@@ -50,17 +50,7 @@ void auth_otp_crypto_free(int flags) {
|
|
ERR_free_strings();
|
|
|
|
#if OPENSSL_VERSION_NUMBER >= 0x10000001L
|
|
-# if OPENSSL_VERSION_NUMBER >= 0x10100000L && \
|
|
- !defined(HAVE_LIBRESSL)
|
|
- ERR_remove_thread_state();
|
|
-# else
|
|
- /* The ERR_remove_state(0) usage is deprecated due to thread ID
|
|
- * differences among platforms; see the OpenSSL-1.0.0c CHANGES file
|
|
- * for details. So for new enough OpenSSL installations, use the
|
|
- * proper way to clear the error queue state.
|
|
- */
|
|
ERR_remove_thread_state(NULL);
|
|
-# endif /* OpenSSL-1.1.x and later */
|
|
#else
|
|
ERR_remove_state(0);
|
|
#endif /* OpenSSL prior to 1.0.0-beta1 */
|