diff options
| author | 2018-07-24 18:29:43 +0100 | |
|---|---|---|
| committer | 2018-07-24 21:55:10 +0100 | |
| commit | 97a1d6429a735eb279496df010d04e3f42aa4e22 (patch) | |
| tree | a201d8ffe678e5929a2b1d373eef8082d8c6150d /src/modules/m_dnsbl.cpp | |
| parent | Fix building on Windows. (diff) | |
| download | inspircd++-97a1d6429a735eb279496df010d04e3f42aa4e22.tar.gz inspircd++-97a1d6429a735eb279496df010d04e3f42aa4e22.tar.bz2 inspircd++-97a1d6429a735eb279496df010d04e3f42aa4e22.zip | |
Make more config stuff case insensitive.
Diffstat (limited to 'src/modules/m_dnsbl.cpp')
| -rw-r--r-- | src/modules/m_dnsbl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_dnsbl.cpp b/src/modules/m_dnsbl.cpp index 10b0e2728..e0a827f04 100644 --- a/src/modules/m_dnsbl.cpp +++ b/src/modules/m_dnsbl.cpp @@ -278,7 +278,7 @@ class ModuleDNSBL : public Module, public Stats::EventListener e->reason = tag->getString("reason"); e->domain = tag->getString("domain"); - if (tag->getString("type") == "bitmask") + if (stdalgo::string::equalsci(tag->getString("type"), "bitmask")) { e->type = DNSBLConfEntry::A_BITMASK; e->bitmask = tag->getUInt("bitmask", 0, 0, UINT_MAX); |
