From: attilamolnar Date: Tue, 25 Dec 2012 17:26:47 +0000 (+0100) Subject: m_ldapoper Fix typo spotted by @lordsith49 X-Git-Tag: v2.0.23~398 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=5a378e1b08ec69cb57f2e52899a5aa7b7424cc75;p=user%2Fhenk%2Fcode%2Finspircd.git m_ldapoper Fix typo spotted by @lordsith49 Fixes #392 --- diff --git a/src/modules/extra/m_ldapoper.cpp b/src/modules/extra/m_ldapoper.cpp index 1812a5ba4..e9e25630c 100644 --- a/src/modules/extra/m_ldapoper.cpp +++ b/src/modules/extra/m_ldapoper.cpp @@ -67,7 +67,7 @@ public: ldapserver = tag->getString("server"); std::string scope = tag->getString("searchscope"); username = tag->getString("binddn"); - password = tag->getString("bindaut"); + password = tag->getString("bindauth"); if (scope == "base") searchscope = LDAP_SCOPE_BASE;