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/dnsbl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/dnsbl.cpp') diff --git a/modules/dnsbl.cpp b/modules/dnsbl.cpp index de6c98853..f7a42b9da 100644 --- a/modules/dnsbl.cpp +++ b/modules/dnsbl.cpp @@ -546,7 +546,7 @@ public: const auto dnsblname = tag->getString("name"); auto dnsbl = std::find_if(newdnsbls.begin(), newdnsbls.end(), [&dnsblname](const auto& d) { - return insp::equalsci(d->name, dnsblname); + return insp::ascii_equals(d->name, dnsblname); }); if (dnsbl == newdnsbls.end()) throw ModuleException(weak_from_this(), " must be set to the name of a DNSBL at " + tag->source.str()); -- cgit v1.3.1-10-gc9f91