]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
Fixup space in error message.
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Fri, 19 Jul 2019 10:51:37 +0000 (12:51 +0200)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Fri, 19 Jul 2019 10:51:37 +0000 (12:51 +0200)
smallapp/unbound-control.c

index eba7f581440cb1d76dc69e01a4fb24f729aea915..01e2385faab71331c5c066ef2f2f5a22a2bb24e3 100644 (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) &