diff options
author | Evgeniy Polyakov <johnpol@2ka.mipt.ru> | 2006-01-12 01:12:41 +0100 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-01-12 01:32:15 +0100 |
commit | c3f343e4d7b99638b8a4f05c12b542d32405cfc4 (patch) | |
tree | edfb917fb2f9692b53954f9b763234425f8f0985 /net | |
parent | [NET]: Remove more unneeded typecasts on *malloc() (diff) | |
download | linux-c3f343e4d7b99638b8a4f05c12b542d32405cfc4.tar.xz linux-c3f343e4d7b99638b8a4f05c12b542d32405cfc4.zip |
[NET]: Fix diverter build.
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/core/dv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/dv.c b/net/core/dv.c index c5deb3655257..1516a90a138d 100644 --- a/net/core/dv.c +++ b/net/core/dv.c @@ -457,7 +457,7 @@ void divert_frame(struct sk_buff *skb) unsigned char *skb_data_end = skb->data + skb->len; /* Packet is already aimed at us, return */ - if (!compare_ether_addr(eth, skb->dev->dev_addr)) + if (!compare_ether_addr(eth->h_dest, skb->dev->dev_addr)) return; /* proto is not IP, do nothing */ |