summaryrefslogtreecommitdiff
path: root/modules/extra/m_ldap_authentication.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-05-05 21:05:43 -0400
committerAdam <Adam@anope.org>2013-05-05 21:05:43 -0400
commit5b3f81ea78f7a8ab69ff94cbf2bbf07f5966682e (patch)
tree3536557fea79ffd77bb5a885465e579eeeafb8ff /modules/extra/m_ldap_authentication.cpp
parent3e8752fe665c3cdf683f2b5fa271231fb3a624df (diff)
That doesn't work either, just don't use references.
find ./ -name '*.cpp' -exec sed -i 's/Get<const Anope::string\&>/Get<const Anope::string>/g' {} \;
Diffstat (limited to 'modules/extra/m_ldap_authentication.cpp')
-rw-r--r--modules/extra/m_ldap_authentication.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/modules/extra/m_ldap_authentication.cpp b/modules/extra/m_ldap_authentication.cpp
index a8ece73ff..8238082a5 100644
--- a/modules/extra/m_ldap_authentication.cpp
+++ b/modules/extra/m_ldap_authentication.cpp
@@ -225,14 +225,14 @@ class NSIdentifyLDAP : public Module
{
Configuration::Block *config = Config->GetModule(this);
- basedn = conf->Get<const Anope::string &>("basedn");
- search_filter = conf->Get<const Anope::string &>("search_filter");
- object_class = conf->Get<const Anope::string &>("object_class");
- username_attribute = conf->Get<const Anope::string &>("username_attribute");
- this->password_attribute = conf->Get<const Anope::string &>("password_attribute");
- email_attribute = conf->Get<const Anope::string &>("email_attribute");
- this->disable_register_reason = conf->Get<const Anope::string &>("disable_register_reason");
- this->disable_email_reason = conf->Get<const Anope::string &>("disable_email_reason");
+ basedn = conf->Get<const Anope::string>("basedn");
+ search_filter = conf->Get<const Anope::string>("search_filter");
+ object_class = conf->Get<const Anope::string>("object_class");
+ username_attribute = conf->Get<const Anope::string>("username_attribute");
+ this->password_attribute = conf->Get<const Anope::string>("password_attribute");
+ email_attribute = conf->Get<const Anope::string>("email_attribute");
+ this->disable_register_reason = conf->Get<const Anope::string>("disable_register_reason");
+ this->disable_email_reason = conf->Get<const Anope::string>("disable_email_reason");
if (!email_attribute.empty())
/* Don't complain to users about how they need to update their email, we will do it for them */