summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorattilamolnar <attilamolnar@hush.com>2012-12-25 18:26:47 +0100
committerattilamolnar <attilamolnar@hush.com>2012-12-25 18:26:47 +0100
commit5a378e1b08ec69cb57f2e52899a5aa7b7424cc75 (patch)
treeef4fbf02f28da16d5a8702bb99622f996c387197
parent401e01feb0aedc4d2ed7557a499e791f77699a01 (diff)
m_ldapoper Fix typo spotted by @lordsith49
Fixes #392
-rw-r--r--src/modules/extra/m_ldapoper.cpp2
1 files changed, 1 insertions, 1 deletions
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;