aboutsummaryrefslogtreecommitdiff
path: root/src/configreader.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2024-06-07 19:19:19 +0100
committerGravatar Sadie Powell2024-06-07 19:19:19 +0100
commitc18499a33208aa92f627e4710ae0bfafea0e31ed (patch)
tree574e42b8d19affb680ace085a4d86771e8abd13d /src/configreader.cpp
parentUpdate irctest. (diff)
Rename regex_pcre back to regex_pcre2.
This rename happened before we had config compatibility and it doesn't make sense to keep it anymore.
Diffstat (limited to 'src/configreader.cpp')
-rw-r--r--src/configreader.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp
index 130a87c15..1b4a590b5 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -686,8 +686,8 @@ std::vector<std::string> ServerConfig::GetModules() const
modules.push_back("services");
else if (insp::equalsci(shortname, "namesx"))
modules.push_back("multiprefix");
- else if (insp::equalsci(shortname, "regex_pcre2"))
- modules.push_back("regex_pcre");
+ else if (insp::equalsci(shortname, "regex_pcre"))
+ modules.push_back("regex_pcre2");
else if (insp::equalsci(shortname, "sha256"))
modules.push_back("sha2");
else if (insp::equalsci(shortname, "services_account"))