diff options
Diffstat (limited to 'src/modules/m_dnsbl.cpp')
-rw-r--r-- | src/modules/m_dnsbl.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_dnsbl.cpp b/src/modules/m_dnsbl.cpp index b4d993703..cf089584d 100644 --- a/src/modules/m_dnsbl.cpp +++ b/src/modules/m_dnsbl.cpp @@ -71,7 +71,8 @@ class DNSBLResolver : public Resolver while(tmp.length()>0) { std::string octet; - unsigned int lastdot = tmp.rfind("."); + /* Fix by brain, npos is -1, so unsigned int will never match */ + std::string::size_type lastdot = tmp.rfind("."); if (lastdot == std::string::npos) { |