diff options
| author | 2026-04-30 22:29:38 +0100 | |
|---|---|---|
| committer | 2026-04-30 23:20:14 +0100 | |
| commit | 9bb55626d51f217466bc08104d2f32eb0bf57c02 (patch) | |
| tree | 44d8c00b97674cd4e35c5a1def208047bf02bcfa /modules/extra/pgsql.cpp | |
| parent | Move CommandLine from ServerConfig to InspIRCd. (diff) | |
Switch ascii comparisons over to our own casemap functions.
Diffstat (limited to 'modules/extra/pgsql.cpp')
| -rw-r--r-- | modules/extra/pgsql.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/extra/pgsql.cpp b/modules/extra/pgsql.cpp index d6d85f7e1..3cf1cde18 100644 --- a/modules/extra/pgsql.cpp +++ b/modules/extra/pgsql.cpp @@ -612,7 +612,7 @@ public: for (const auto& [_, tag] : ServerInstance->Config->ConfTags("database")) { - if (!insp::equalsci(tag->getString("module"), "pgsql")) + if (!insp::ascii_equals(tag->getString("module"), "pgsql")) continue; std::string id = tag->getString("id"); |
