]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
m_ssl_openssl Fix debug message
authorAttila Molnar <attilamolnar@hush.com>
Wed, 15 Oct 2014 18:16:05 +0000 (20:16 +0200)
committerAttila Molnar <attilamolnar@hush.com>
Wed, 15 Oct 2014 18:16:05 +0000 (20:16 +0200)
src/modules/extra/m_ssl_openssl.cpp

index d9dc47569dbda0af0b43458c001959df28b733b8..27cd3a2aeabdd92c1b56b63ed213dcb51f65be95 100644 (file)
@@ -128,7 +128,7 @@ class ModuleSSLOpenSSL : public Module
                        setoptions |= SSL_OP_NO_TLSv1;
 
                long clearoptions = tag->getInt(ctxname + "clearoptions");
-               ServerInstance->Logs->Log("m_ssl_openssl", DEBUG, "Setting OpenSSL %s context options, default: %ld set: %ld clear: %ld", ctxname.c_str(), defoptions, clearoptions, setoptions);
+               ServerInstance->Logs->Log("m_ssl_openssl", DEBUG, "Setting OpenSSL %s context options, default: %ld set: %ld clear: %ld", ctxname.c_str(), defoptions, setoptions, clearoptions);
 
                // Clear everything
                SSL_CTX_clear_options(ctx, SSL_CTX_get_options(ctx));