diff options
Diffstat (limited to 'src/cidr.cpp')
-rw-r--r-- | src/cidr.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/cidr.cpp b/src/cidr.cpp index 040681766..d38056b02 100644 --- a/src/cidr.cpp +++ b/src/cidr.cpp @@ -121,7 +121,6 @@ bool irc::sockets::MatchCIDR(const std::string &address, const std::string &cidr return false; } -#ifdef SUPPORT_IP6LINKS in6_addr address_in6; in6_addr mask_in6; @@ -143,9 +142,7 @@ bool irc::sockets::MatchCIDR(const std::string &address, const std::string &cidr return false; } } - else -#endif - if (inet_pton(AF_INET, address_copy.c_str(), &address_in4) > 0) + else if (inet_pton(AF_INET, address_copy.c_str(), &address_in4) > 0) { if (inet_pton(AF_INET, cidr_copy.c_str(), &mask_in4) > 0) { |