diff options
| author | 2026-04-30 22:29:38 +0100 | |
|---|---|---|
| committer | 2026-04-30 23:20:14 +0100 | |
| commit | 9bb55626d51f217466bc08104d2f32eb0bf57c02 (patch) | |
| tree | 44d8c00b97674cd4e35c5a1def208047bf02bcfa /modules/geoclass.cpp | |
| parent | Move CommandLine from ServerConfig to InspIRCd. (diff) | |
Switch ascii comparisons over to our own casemap functions.
Diffstat (limited to 'modules/geoclass.cpp')
| -rw-r--r-- | modules/geoclass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/geoclass.cpp b/modules/geoclass.cpp index 817e8291b..3549c3dc3 100644 --- a/modules/geoclass.cpp +++ b/modules/geoclass.cpp @@ -61,7 +61,7 @@ public: // If the user matches this country code then they can use this // connect class. - if (insp::equalsci(token, code)) + if (insp::ascii_equals(token, code)) return MOD_RES_PASSTHRU; } |
