1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-23 00:00:06 +01:00

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.
This commit is contained in:
Andy Green 2020-08-17 16:50:23 +01:00
parent 314690f38d
commit 6cf2350205

View file

@ -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;
}