From 9bb55626d51f217466bc08104d2f32eb0bf57c02 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Thu, 30 Apr 2026 22:29:38 +0100 Subject: Switch ascii comparisons over to our own casemap functions. --- modules/httpd_acl.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/httpd_acl.cpp') diff --git a/modules/httpd_acl.cpp b/modules/httpd_acl.cpp index 083fe0b4d..65ced0c44 100644 --- a/modules/httpd_acl.cpp +++ b/modules/httpd_acl.cpp @@ -79,16 +79,16 @@ public: while (sep.GetToken(type)) { - if (insp::equalsci(type, "password")) + if (insp::ascii_equals(type, "password")) { username = c->getString("username"); password = c->getString("password"); } - else if (insp::equalsci(type, "whitelist")) + else if (insp::ascii_equals(type, "whitelist")) { whitelist = c->getString("whitelist"); } - else if (insp::equalsci(type, "blacklist")) + else if (insp::ascii_equals(type, "blacklist")) { blacklist = c->getString("blacklist"); } -- cgit v1.3.1-10-gc9f91