From e5f96b0564a63fff73485dd552dfaefe534ed080 Mon Sep 17 00:00:00 2001 From: Attila Molnar Date: Sun, 6 Apr 2014 16:25:50 +0200 Subject: Fix IPv6 address handling in 6aaf7047297b739377e7d509cb914f32447fb281 --- src/cidr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cidr.cpp b/src/cidr.cpp index a4a252a48..333875665 100644 --- a/src/cidr.cpp +++ b/src/cidr.cpp @@ -68,7 +68,7 @@ bool irc::sockets::MatchCIDR(const std::string &address, const std::string &cidr const std::string::size_type per_pos = cidr_copy.rfind('/'); if ((per_pos == std::string::npos) || (per_pos == cidr_copy.length()-1) || (cidr_copy.find_first_not_of("0123456789", per_pos+1) != std::string::npos) - || (cidr_copy.find_first_not_of("0123456789.:") < per_pos)) + || (cidr_copy.find_first_not_of("0123456789abcdef.:") < per_pos)) { // The CIDR mask is invalid return false; -- cgit v1.2.3