From: Changli Gao Date: Fri, 9 Jul 2010 15:31:49 +0000 (+0200) Subject: netfilter: xt_TPROXY: the length of lines should be within 80 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=116e1f1b09dffe0ff8ebab73501324dca7bbbe5e;p=linux-beck.git netfilter: xt_TPROXY: the length of lines should be within 80 According to the Documentation/CodingStyle, the length of lines should be within 80. Signed-off-by: Changli Gao Signed-off-by: Patrick McHardy --- diff --git a/net/netfilter/xt_TPROXY.c b/net/netfilter/xt_TPROXY.c index e1a0dedac258..c61294d85fda 100644 --- a/net/netfilter/xt_TPROXY.c +++ b/net/netfilter/xt_TPROXY.c @@ -37,8 +37,10 @@ tproxy_tg(struct sk_buff *skb, const struct xt_action_param *par) return NF_DROP; sk = nf_tproxy_get_sock_v4(dev_net(skb->dev), iph->protocol, - iph->saddr, tgi->laddr ? tgi->laddr : iph->daddr, - hp->source, tgi->lport ? tgi->lport : hp->dest, + iph->saddr, + tgi->laddr ? tgi->laddr : iph->daddr, + hp->source, + tgi->lport ? tgi->lport : hp->dest, par->in, true); /* NOTE: assign_sock consumes our sk reference */