Fix processing of CIDRs with mask 0
authorJo-Philipp Wich <jow@openwrt.org>
Tue, 18 Jun 2013 14:11:56 +0000 (16:11 +0200)
committerJo-Philipp Wich <jow@openwrt.org>
Tue, 18 Jun 2013 14:11:56 +0000 (16:11 +0200)
iptables.c

index df0d704..7d91452 100644 (file)
@@ -609,7 +609,10 @@ fw3_ipt_rule_in_out(struct fw3_ipt_rule *r,
 static void
 ip4prefix2mask(int prefix, struct in_addr *mask)
 {
-       mask->s_addr = htonl(~((1 << (32 - prefix)) - 1));
+       if (prefix > 0)
+               mask->s_addr = htonl(~((1 << (32 - prefix)) - 1));
+       else
+               mask->s_addr = 0;
 }
 
 #ifndef DISABLE_IPV6