diff options
author | Adam <Adam@drink-coca-cola.info> | 2010-05-07 15:51:54 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-06-18 20:58:55 -0400 |
commit | b775c84402c309ccf4bced359ee714fbedb4dd6e (patch) | |
tree | 2a6dde65f2a3f250f2bed0bc2e3c6e618e76b373 /src/modules/ssl/m_ssl.cpp | |
parent | ebfff71599fbedb72009d71cd40c264713b43b5a (diff) |
Fixed the Makefiles to build m_ssl correctly and marked m_ssl as permanent
Diffstat (limited to 'src/modules/ssl/m_ssl.cpp')
-rw-r--r-- | src/modules/ssl/m_ssl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/ssl/m_ssl.cpp b/src/modules/ssl/m_ssl.cpp index 8036de6ce..075352551 100644 --- a/src/modules/ssl/m_ssl.cpp +++ b/src/modules/ssl/m_ssl.cpp @@ -65,6 +65,7 @@ class SSLModule : public Module this->SetAuthor("Anope"); this->SetVersion("$Id$"); this->SetType(SUPPORTED); + this->SetPermanent(true); SSL_load_error_strings(); SSLeay_add_ssl_algorithms(); @@ -112,7 +113,6 @@ class SSLModule : public Module SSL_CTX_set_options(ctx, SSL_OP_NO_SSLv2); SSL_CTX_set_options(ctx, SSL_OP_TLS_ROLLBACK_BUG | SSL_OP_ALL); -// SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER, always_accept_verify_cb); ModuleManager::Attach(I_OnPreServerConnect, this); } |