Fixup space in error message.

This commit is contained in:
W.C.A. Wijngaards 2019-07-19 12:51:37 +02:00
parent c94e13220b
commit b4b0065554

View file

@ -498,7 +498,7 @@ setup_ctx(struct config_file* cfg)
ssl_err("could not set SSL_OP_NO_SSLv2");
if((SSL_CTX_set_options(ctx, SSL_OP_NO_SSLv3) & SSL_OP_NO_SSLv3)
!= SSL_OP_NO_SSLv3)
ssl_err("could not set SSL_O P_NO_SSLv3");
ssl_err("could not set SSL_OP_NO_SSLv3");
#if defined(SSL_OP_NO_RENEGOTIATION)
/* disable client renegotiation */
if((SSL_CTX_set_options(ctx, SSL_OP_NO_RENEGOTIATION) &