From b4b00655542024111bc2eb044f2029008cf9a6ae Mon Sep 17 00:00:00 2001 From: "W.C.A. Wijngaards" Date: Fri, 19 Jul 2019 12:51:37 +0200 Subject: [PATCH] Fixup space in error message. --- smallapp/unbound-control.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smallapp/unbound-control.c b/smallapp/unbound-control.c index eba7f5814..01e2385fa 100644 --- a/smallapp/unbound-control.c +++ b/smallapp/unbound-control.c @@ -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) &