aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_dnsbl.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-09-30 20:21:59 +0100
committerGravatar Sadie Powell2022-09-30 20:21:59 +0100
commite4efd41a99e1237b61336555af0398ef5f634a4d (patch)
tree33d556a2347e0e1531546cf0d661b40512c3b620 /src/modules/m_dnsbl.cpp
parentUse auto instead of type names where the type is obvious. (diff)
Use a global typedef for representing a character set.
Diffstat (limited to 'src/modules/m_dnsbl.cpp')
-rw-r--r--src/modules/m_dnsbl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_dnsbl.cpp b/src/modules/m_dnsbl.cpp
index d100daebb..bedfaec0a 100644
--- a/src/modules/m_dnsbl.cpp
+++ b/src/modules/m_dnsbl.cpp
@@ -86,7 +86,7 @@ public:
std::string name;
// A range of DNSBL result types to match against.
- std::bitset<UCHAR_MAX + 1> records;
+ CharState records;
// The message to send to users who's IP address is in a DNSBL.
std::string reason;