1
0
mirror of https://github.com/anope/anope.git synced 2026-07-06 16:53:12 +02:00

Fix the on start library version logging to include the module.

This commit is contained in:
Sadie Powell
2025-03-05 16:03:23 +00:00
parent a0a9d433dc
commit 14342f6375
8 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -126,7 +126,7 @@ public:
SSL_CTX_set_session_id_context(client_ctx, reinterpret_cast<const unsigned char *>(context_name.c_str()), context_name.length());
SSL_CTX_set_session_id_context(server_ctx, reinterpret_cast<const unsigned char *>(context_name.c_str()), context_name.length());
Log() << "Module was compiled against OpenSSL version " << OPENSSL_VERSION_STR << " and is running against version " << OpenSSL_version(OPENSSL_VERSION_STRING);
Log(this) << "Module was compiled against OpenSSL version " << OPENSSL_VERSION_STR << " and is running against version " << OpenSSL_version(OPENSSL_VERSION_STRING);
}
~SSLModule()