aboutsummaryrefslogtreecommitdiff
path: root/src/configreader.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2023-08-05 12:02:14 +0100
committerGravatar Sadie Powell2023-08-11 12:03:09 +0100
commit681b488fc0ebca964eddf2a54575dc41901bc520 (patch)
tree8d5953e1ecc38e7abc8e4369e71a2f3db2a1744a /src/configreader.cpp
parentMove stdalgo::string::{equalsci,tocstr} to utility/string. (diff)
Update usages of stdalgo::string::equalsci to use insp::equalsci.
Diffstat (limited to 'src/configreader.cpp')
-rw-r--r--src/configreader.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp
index 041c573fd..1fb12dc0d 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -668,32 +668,32 @@ std::vector<std::string> ServerConfig::GetModules() const
}
// Rewrite the old names of renamed modules.
- if (stdalgo::string::equalsci(shortname, "cgiirc"))
+ if (insp::equalsci(shortname, "cgiirc"))
modules.push_back("gateway");
- else if (stdalgo::string::equalsci(shortname, "cloaking"))
+ else if (insp::equalsci(shortname, "cloaking"))
{
modules.push_back("cloak");
modules.push_back("cloak_md5");
}
- else if (stdalgo::string::equalsci(shortname, "gecosban"))
+ else if (insp::equalsci(shortname, "gecosban"))
modules.push_back("realnameban");
- else if (stdalgo::string::equalsci(shortname, "helpop"))
+ else if (insp::equalsci(shortname, "helpop"))
{
modules.push_back("help");
modules.push_back("helpmode");
}
- else if (stdalgo::string::equalsci(shortname, "regex_pcre2"))
+ else if (insp::equalsci(shortname, "regex_pcre2"))
modules.push_back("regex_pcre");
- else if (stdalgo::string::equalsci(shortname, "sha256"))
+ else if (insp::equalsci(shortname, "sha256"))
modules.push_back("sha2");
- else if (stdalgo::string::equalsci(shortname, "services_account"))
+ else if (insp::equalsci(shortname, "services_account"))
{
modules.push_back("account");
modules.push_back("services");
}
- else if (stdalgo::string::equalsci(shortname, "servprotect"))
+ else if (insp::equalsci(shortname, "servprotect"))
modules.push_back("services");
- else if (stdalgo::string::equalsci(shortname, "svshold"))
+ else if (insp::equalsci(shortname, "svshold"))
modules.push_back("services");
else
{