From 681b488fc0ebca964eddf2a54575dc41901bc520 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Sat, 5 Aug 2023 12:02:14 +0100 Subject: Update usages of stdalgo::string::equalsci to use insp::equalsci. --- src/modules/m_httpd_acl.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/modules/m_httpd_acl.cpp') diff --git a/src/modules/m_httpd_acl.cpp b/src/modules/m_httpd_acl.cpp index e9a03123a..c7fc68d45 100644 --- a/src/modules/m_httpd_acl.cpp +++ b/src/modules/m_httpd_acl.cpp @@ -25,6 +25,7 @@ #include "inspircd.h" #include "modules/httpd.h" +#include "utility/string.h" class HTTPACL final { @@ -78,16 +79,16 @@ public: while (sep.GetToken(type)) { - if (stdalgo::string::equalsci(type, "password")) + if (insp::equalsci(type, "password")) { username = c->getString("username"); password = c->getString("password"); } - else if (stdalgo::string::equalsci(type, "whitelist")) + else if (insp::equalsci(type, "whitelist")) { whitelist = c->getString("whitelist"); } - else if (stdalgo::string::equalsci(type, "blacklist")) + else if (insp::equalsci(type, "blacklist")) { blacklist = c->getString("blacklist"); } -- cgit v1.3.1-10-gc9f91