aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/extra/m_ldapoper.cpp
diff options
context:
space:
mode:
authorGravatar attilamolnar2012-10-13 03:12:29 +0200
committerGravatar attilamolnar2012-12-02 19:39:46 +0100
commitac7defcd3e52695dcf5e5150e9fe3e1624205e64 (patch)
treeda428a276376986ca64390d5cf5662083f8197c6 /src/modules/extra/m_ldapoper.cpp
parentMerge pull request #376 from SaberUK/insp20+fix-clean (diff)
Attach to events and register services in init()
Diffstat (limited to 'src/modules/extra/m_ldapoper.cpp')
-rw-r--r--src/modules/extra/m_ldapoper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/extra/m_ldapoper.cpp b/src/modules/extra/m_ldapoper.cpp
index 84a3b8729..e8455529d 100644
--- a/src/modules/extra/m_ldapoper.cpp
+++ b/src/modules/extra/m_ldapoper.cpp
@@ -45,8 +45,8 @@ class ModuleLDAPAuth : public Module
LDAP *conn;
public:
- ModuleLDAPAuth()
- {
+ void init()
+ {
conn = NULL;
Implementation eventlist[] = { I_OnRehash, I_OnPassCompare };
ServerInstance->Modules->Attach(eventlist, this, 2);