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

fix busted debug format in ssl mode

CyaSSL blows (symptomless?) uninitialized memory accesses in
valgrind when using SSL_get_version()... don't need to do it...

Signed-off-by: Andy Green <andy.green@linaro.org>
This commit is contained in:
Andy Green 2013-02-11 20:10:56 +08:00
parent 090789e87b
commit 35517092ff

View file

@ -361,9 +361,7 @@ int lws_server_socket_service(struct libwebsocket_context *context,
wsi->mode = LWS_CONNMODE_HTTP_SERVING;
lwsl_debug(
"accepted new SSL conn port %u on fd=%d SSL ver %s\n",
ntohs(cli_addr.sin_port), SSL_get_version(wsi->ssl));
lwsl_debug("accepted new SSL conn\n");
break;
#endif