diff options
author | Andrew Morton <akpm@osdl.org> | 2006-03-21 02:00:56 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-03-21 02:00:56 -0500 |
commit | b3e83d6d187664be56a1591ccfa99124b88f0582 (patch) | |
tree | 58973aa72cb93585fcd4d8eb04da27f5133e211e /net/bridge/br_input.c | |
parent | 3400112794724d9bdc3de6e1ce1475b726e6ca7d (diff) |
[BRIDGE]: Remove duplicate const from is_link_local() argument type.
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bridge/br_input.c')
-rw-r--r-- | net/bridge/br_input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bridge/br_input.c b/net/bridge/br_input.c index a9feb2015425..b7766562d72c 100644 --- a/net/bridge/br_input.c +++ b/net/bridge/br_input.c | |||
@@ -109,7 +109,7 @@ static int br_handle_local_finish(struct sk_buff *skb) | |||
109 | /* Does address match the link local multicast address. | 109 | /* Does address match the link local multicast address. |
110 | * 01:80:c2:00:00:0X | 110 | * 01:80:c2:00:00:0X |
111 | */ | 111 | */ |
112 | static inline int is_link_local(const const unsigned char *dest) | 112 | static inline int is_link_local(const unsigned char *dest) |
113 | { | 113 | { |
114 | return memcmp(dest, br_group_address, 5) == 0 && (dest[5] & 0xf0) == 0; | 114 | return memcmp(dest, br_group_address, 5) == 0 && (dest[5] & 0xf0) == 0; |
115 | } | 115 | } |