diff options
| author | 2020-04-09 18:57:50 +0100 | |
|---|---|---|
| committer | 2020-04-11 13:54:05 +0100 | |
| commit | 1a800f7b3db23cdef7e167cd25c0f3b2a64a8e46 (patch) | |
| tree | f302e819c6707d578c2011544069a21640fab735 /src/modules/extra/m_ldap.cpp | |
| parent | Default <sslprofile:hash> to sha256 for GnuTLS and OpenSSL. (diff) | |
Improve storage of module description, flags, and link data.
Diffstat (limited to 'src/modules/extra/m_ldap.cpp')
| -rw-r--r-- | src/modules/extra/m_ldap.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/extra/m_ldap.cpp b/src/modules/extra/m_ldap.cpp index d536dc0ed..404588224 100644 --- a/src/modules/extra/m_ldap.cpp +++ b/src/modules/extra/m_ldap.cpp @@ -621,6 +621,11 @@ class ModuleLDAP : public Module } } + ModuleLDAP() + : Module(VF_VENDOR, "Provides LDAP support") + { + } + ~ModuleLDAP() { for (ServiceMap::iterator i = LDAPServices.begin(); i != LDAPServices.end(); ++i) @@ -631,11 +636,6 @@ class ModuleLDAP : public Module delete conn; } } - - Version GetVersion() override - { - return Version("Provides LDAP support", VF_VENDOR); - } }; int LDAPBind::run() |
