aboutsummaryrefslogtreecommitdiffstats
path: root/net/netfilter/xt_iprange.c
diff options
context:
space:
mode:
authorThomas Jacob <jacob@internet24.de>2011-01-27 04:56:32 -0500
committerPatrick McHardy <kaber@trash.net>2011-01-27 04:56:32 -0500
commit705ca147176090203afd7503392e6e770637499b (patch)
treedf1d39bb69e7e7ff4c367136725d1c66a81aa7a1 /net/netfilter/xt_iprange.c
parent2e0348c449683a837644bb0027dbe5940b150c25 (diff)
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>
Diffstat (limited to 'net/netfilter/xt_iprange.c')
-rw-r--r--net/netfilter/xt_iprange.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/xt_iprange.c b/net/netfilter/xt_iprange.c
index 88f7c3511c7..77b9ebcc90b 100644
--- a/net/netfilter/xt_iprange.c
+++ b/net/netfilter/xt_iprange.c
@@ -31,7 +31,7 @@ iprange_mt4(const struct sk_buff *skb, struct xt_action_param *par)
31 pr_debug("src IP %pI4 NOT in range %s%pI4-%pI4\n", 31 pr_debug("src IP %pI4 NOT in range %s%pI4-%pI4\n",
32 &iph->saddr, 32 &iph->saddr,
33 (info->flags & IPRANGE_SRC_INV) ? "(INV) " : "", 33 (info->flags & IPRANGE_SRC_INV) ? "(INV) " : "",
34 &info->src_max.ip, 34 &info->src_min.ip,
35 &info->src_max.ip); 35 &info->src_max.ip);
36 return false; 36 return false;
37 } 37 }