From 6cf2350205ad744feae219ae375af22ce41450bc Mon Sep 17 00:00:00 2001 From: Andy Green Date: Mon, 17 Aug 2020 16:50:23 +0100 Subject: [PATCH] openssl: remove check for errno This has gone in master, on platforms that may trash errno during the logging, this doesn't do anything useful anyway. --- lib/tls/openssl/openssl-ssl.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/tls/openssl/openssl-ssl.c b/lib/tls/openssl/openssl-ssl.c index 1f2fd8258..befebbcd2 100644 --- a/lib/tls/openssl/openssl-ssl.c +++ b/lib/tls/openssl/openssl-ssl.c @@ -60,8 +60,6 @@ int lws_ssl_get_error(struct lws *wsi, int n) lwsl_debug("%s: %p %d -> %d (errno %d)\n", __func__, wsi->tls.ssl, n, m, errno); - assert (errno != 9); - return m; }