Parcourir la source

netfilter: xt_iprange: typo in IPv4 match debug print code

Signed-off-by: Thomas Jacob <jacob@internet24.de>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Thomas Jacob il y a 14 ans
Parent
commit
705ca14717
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      net/netfilter/xt_iprange.c

+ 1 - 1
net/netfilter/xt_iprange.c

@@ -31,7 +31,7 @@ iprange_mt4(const struct sk_buff *skb, struct xt_action_param *par)
 			pr_debug("src IP %pI4 NOT in range %s%pI4-%pI4\n",
 			         &iph->saddr,
 			         (info->flags & IPRANGE_SRC_INV) ? "(INV) " : "",
-			         &info->src_max.ip,
+			         &info->src_min.ip,
 			         &info->src_max.ip);
 			return false;
 		}