1
0
Fork 0

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>
hifive-unleashed-5.1
Thomas Jacob 2011-01-27 10:56:32 +01:00 committed by Patrick McHardy
parent 2e0348c449
commit 705ca14717
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}