aboutsummaryrefslogtreecommitdiff
path: root/modules/dccallow.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2026-04-30 22:29:38 +0100
committerGravatar Sadie Powell2026-04-30 23:20:14 +0100
commit9bb55626d51f217466bc08104d2f32eb0bf57c02 (patch)
tree44d8c00b97674cd4e35c5a1def208047bf02bcfa /modules/dccallow.cpp
parentMove CommandLine from ServerConfig to InspIRCd. (diff)
Switch ascii comparisons over to our own casemap functions.
Diffstat (limited to 'modules/dccallow.cpp')
-rw-r--r--modules/dccallow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dccallow.cpp b/modules/dccallow.cpp
index 02c04559b..8733c322e 100644
--- a/modules/dccallow.cpp
+++ b/modules/dccallow.cpp
@@ -480,7 +480,7 @@ public:
if (InspIRCd::Match(filename, bf.filemask, ascii_case_insensitive_map))
{
/* We have a matching badfile entry, override whatever the default action is */
- if (insp::equalsci(bf.action, "allow"))
+ if (insp::ascii_equals(bf.action, "allow"))
return MOD_RES_PASSTHRU;
else
{