diff options
Diffstat (limited to 'net/8021q/vlan_dev.c')
-rw-r--r-- | net/8021q/vlan_dev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/8021q/vlan_dev.c b/net/8021q/vlan_dev.c index f2a8750bbf1d..0f604d227da2 100644 --- a/net/8021q/vlan_dev.c +++ b/net/8021q/vlan_dev.c | |||
@@ -214,7 +214,7 @@ int vlan_skb_recv(struct sk_buff *skb, struct net_device *dev, | |||
214 | * This allows the VLAN to have a different MAC than the underlying | 214 | * This allows the VLAN to have a different MAC than the underlying |
215 | * device, and still route correctly. | 215 | * device, and still route correctly. |
216 | */ | 216 | */ |
217 | if (memcmp(eth_hdr(skb)->h_dest, skb->dev->dev_addr, ETH_ALEN) == 0) { | 217 | if (!compare_ether_addr(eth_hdr(skb)->h_dest, skb->dev->dev_addr)) { |
218 | /* It is for our (changed) MAC-address! */ | 218 | /* It is for our (changed) MAC-address! */ |
219 | skb->pkt_type = PACKET_HOST; | 219 | skb->pkt_type = PACKET_HOST; |
220 | } | 220 | } |