From 681b488fc0ebca964eddf2a54575dc41901bc520 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Sat, 5 Aug 2023 12:02:14 +0100 Subject: Update usages of stdalgo::string::equalsci to use insp::equalsci. --- src/modules/m_dnsbl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/modules/m_dnsbl.cpp') diff --git a/src/modules/m_dnsbl.cpp b/src/modules/m_dnsbl.cpp index 4207741e7..d00d422d9 100644 --- a/src/modules/m_dnsbl.cpp +++ b/src/modules/m_dnsbl.cpp @@ -136,14 +136,14 @@ public: }); const std::string typestr = tag->getString("type"); - if (stdalgo::string::equalsci(typestr, "bitmask")) + if (insp::equalsci(typestr, "bitmask")) { type = Type::BITMASK; bitmask = tag->getNum("bitmask", 0); records = 0; } - else if (stdalgo::string::equalsci(typestr, "record")) + else if (insp::equalsci(typestr, "record")) { type = Type::RECORD; -- cgit v1.3.1-10-gc9f91