1
0
mirror of https://github.com/anope/anope.git synced 2026-07-01 11:46:37 +02:00

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' {} \;
This commit is contained in:
Adam
2013-05-05 21:05:43 -04:00
parent 3e8752fe66
commit 5b3f81ea78
64 changed files with 260 additions and 266 deletions
+8 -8
View File
@@ -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 */