[NETFILTER]: ipt_TTL: fix checksum update bug
Fix regression introduced by the incremental checksum patches. Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
5251e2d212
commit
ca39df6cdf
@@ -54,8 +54,8 @@ ipt_ttl_target(struct sk_buff **pskb,
|
||||
}
|
||||
|
||||
if (new_ttl != iph->ttl) {
|
||||
iph->check = nf_csum_update((iph->ttl << 8) ^ 0xFFFF,
|
||||
new_ttl << 8,
|
||||
iph->check = nf_csum_update(ntohs((iph->ttl << 8)) ^ 0xFFFF,
|
||||
ntohs(new_ttl << 8),
|
||||
iph->check);
|
||||
iph->ttl = new_ttl;
|
||||
}
|
||||
|
Reference in New Issue
Block a user