diff options
author | attilamolnar <attilamolnar@hush.com> | 2013-03-12 16:30:45 +0100 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-03-15 00:50:35 +0100 |
commit | efdf336d8c6fad41fef418ef341f8b6af5e12cf4 (patch) | |
tree | f8405c5c0e09aa647c238b6a50b802ca463c287a /src/modules/extra | |
parent | b71f1affeaa2dbc1d4e5fdf799ab1527a190b0e1 (diff) |
m_ssl_openssl Make it clear that a CA file is not mandatory
Diffstat (limited to 'src/modules/extra')
-rw-r--r-- | src/modules/extra/m_ssl_openssl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/extra/m_ssl_openssl.cpp b/src/modules/extra/m_ssl_openssl.cpp index b741c67b5..b63fcd376 100644 --- a/src/modules/extra/m_ssl_openssl.cpp +++ b/src/modules/extra/m_ssl_openssl.cpp @@ -242,7 +242,7 @@ class ModuleSSLOpenSSL : public Module /* Load the CAs we trust*/ if (((!SSL_CTX_load_verify_locations(ctx, cafile.c_str(), 0))) || (!SSL_CTX_load_verify_locations(clictx, cafile.c_str(), 0))) { - ServerInstance->Logs->Log("m_ssl_openssl",DEFAULT, "m_ssl_openssl.so: Can't read CA list from %s. %s", cafile.c_str(), strerror(errno)); + ServerInstance->Logs->Log("m_ssl_openssl",DEFAULT, "m_ssl_openssl.so: Can't read CA list from %s. This is only a problem if you want to verify client certificates, otherwise it's safe to ignore this message. Error: %s", cafile.c_str(), strerror(errno)); ERR_print_errors_cb(error_callback, this); } |