From 01a9da72ca50d96ac8490c5cdf4dd5e52ffe42b4 Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Wed, 31 Aug 2016 15:49:11 +0200 Subject: Don't call ERR_remove_thread_state(). Not needed as of openssl-1.1, see https://www.openssl.org/docs/man1.1.0/crypto/ERR_remove_thread_state.html --- tls.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'tls.c') diff --git a/tls.c b/tls.c index d9a4b81..143c900 100644 --- a/tls.c +++ b/tls.c @@ -291,7 +291,6 @@ void *tlsclientrd(void *arg) { } } debug(DBG_INFO, "tlsclientrd: exiting for %s", server->conf->name); - ERR_remove_thread_state(0); SSL_shutdown(server->ssl); shutdown(server->sock, SHUT_RDWR); close(server->sock); @@ -325,7 +324,6 @@ void *tlsserverwr(void *arg) { /* ssl might have changed while waiting */ pthread_mutex_unlock(&replyq->mutex); debug(DBG_DBG, "tlsserverwr: exiting as requested"); - ERR_remove_thread_state(0); pthread_exit(NULL); } } @@ -450,7 +448,6 @@ exit: SSL_shutdown(ssl); SSL_free(ssl); } - ERR_remove_thread_state(0); shutdown(s, SHUT_RDWR); close(s); pthread_exit(NULL); -- cgit v1.1