diff options
author | Patrick McHardy <kaber@trash.net> | 2006-09-20 15:02:21 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-22 18:19:55 -0400 |
commit | 7cf73936fe6bb9b027b75fd8fa3c634fe74843d3 (patch) | |
tree | 3fd047eb700ff11ddaff1a91bef478175c4e8c3b /net | |
parent | ca39df6cdfbe2ea210e31117f5d469576cfe9008 (diff) |
[NETFILTER]: ip6t_HL: remove write-only variable
Noticed by Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv6/netfilter/ip6t_HL.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/net/ipv6/netfilter/ip6t_HL.c b/net/ipv6/netfilter/ip6t_HL.c index e54ea92d107b..435750f664dd 100644 --- a/net/ipv6/netfilter/ip6t_HL.c +++ b/net/ipv6/netfilter/ip6t_HL.c | |||
@@ -26,7 +26,6 @@ static unsigned int ip6t_hl_target(struct sk_buff **pskb, | |||
26 | { | 26 | { |
27 | struct ipv6hdr *ip6h; | 27 | struct ipv6hdr *ip6h; |
28 | const struct ip6t_HL_info *info = targinfo; | 28 | const struct ip6t_HL_info *info = targinfo; |
29 | u_int16_t diffs[2]; | ||
30 | int new_hl; | 29 | int new_hl; |
31 | 30 | ||
32 | if (!skb_make_writable(pskb, (*pskb)->len)) | 31 | if (!skb_make_writable(pskb, (*pskb)->len)) |
@@ -53,11 +52,8 @@ static unsigned int ip6t_hl_target(struct sk_buff **pskb, | |||
53 | break; | 52 | break; |
54 | } | 53 | } |
55 | 54 | ||
56 | if (new_hl != ip6h->hop_limit) { | 55 | if (new_hl != ip6h->hop_limit) |
57 | diffs[0] = htons(((unsigned)ip6h->hop_limit) << 8) ^ 0xFFFF; | ||
58 | ip6h->hop_limit = new_hl; | 56 | ip6h->hop_limit = new_hl; |
59 | diffs[1] = htons(((unsigned)ip6h->hop_limit) << 8); | ||
60 | } | ||
61 | 57 | ||
62 | return IP6T_CONTINUE; | 58 | return IP6T_CONTINUE; |
63 | } | 59 | } |