projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3400112
)
[BRIDGE]: Remove duplicate const from is_link_local() argument type.
author
Andrew Morton
<akpm@osdl.org>
Tue, 21 Mar 2006 07:00:56 +0000
(23:00 -0800)
committer
David S. Miller
<davem@davemloft.net>
Tue, 21 Mar 2006 07:00:56 +0000
(23:00 -0800)
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/bridge/br_input.c
patch
|
blob
|
history
diff --git
a/net/bridge/br_input.c
b/net/bridge/br_input.c
index a9feb201542569ede6591a50ff52b6670ed71173..b7766562d72c0aaaa7727d80e3db1cc31043406b 100644
(file)
--- 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)
/* Does address match the link local multicast address.
* 01:80:c2:00:00:0X
*/
-static inline int is_link_local(const
const
unsigned char *dest)
+static inline int is_link_local(const unsigned char *dest)
{
return memcmp(dest, br_group_address, 5) == 0 && (dest[5] & 0xf0) == 0;
}