diff options
| author | 2023-08-05 12:02:14 +0100 | |
|---|---|---|
| committer | 2023-08-11 12:03:09 +0100 | |
| commit | 681b488fc0ebca964eddf2a54575dc41901bc520 (patch) | |
| tree | 8d5953e1ecc38e7abc8e4369e71a2f3db2a1744a /src/modules/m_dnsbl.cpp | |
| parent | Move stdalgo::string::{equalsci,tocstr} to utility/string. (diff) | |
Update usages of stdalgo::string::equalsci to use insp::equalsci.
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; |
