diff options
| author | 2020-04-17 15:00:18 +0100 | |
|---|---|---|
| committer | 2020-04-17 15:00:48 +0100 | |
| commit | ac1b4ea7ae9859c342476cd326bdf31399dfa9e0 (patch) | |
| tree | 3f4040ca6927ce8cdac3faf5c3a2698bd8218477 /src/modules/m_ldapoper.cpp | |
| parent | Update the <securelist> documentation. (diff) | |
| download | inspircd++-ac1b4ea7ae9859c342476cd326bdf31399dfa9e0.tar.gz inspircd++-ac1b4ea7ae9859c342476cd326bdf31399dfa9e0.tar.bz2 inspircd++-ac1b4ea7ae9859c342476cd326bdf31399dfa9e0.zip | |
Fix ldapoper trying to auth using the provider name as the account.
Diffstat (limited to 'src/modules/m_ldapoper.cpp')
| -rw-r--r-- | src/modules/m_ldapoper.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/modules/m_ldapoper.cpp b/src/modules/m_ldapoper.cpp index 4f24615d0..aad21522b 100644 --- a/src/modules/m_ldapoper.cpp +++ b/src/modules/m_ldapoper.cpp @@ -150,7 +150,13 @@ class AdminBindInterface : public LDAPInterface public: AdminBindInterface(Module* c, const std::string& p, const std::string& u, const std::string& o, const std::string& pa, const std::string& b, const std::string& w) - : LDAPInterface(c), provider(p), user(u), opername(p), password(pa), base(b), what(w) + : LDAPInterface(c) + , provider(p) + , user(u) + , opername(o) + , password(pa) + , base(b) + , what(w) { } |
