diff options
Diffstat (limited to 'src/modules/m_dnsbl.cpp')
| -rw-r--r-- | src/modules/m_dnsbl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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<unsigned int>("bitmask", 0); records = 0; } - else if (stdalgo::string::equalsci(typestr, "record")) + else if (insp::equalsci(typestr, "record")) { type = Type::RECORD; |
