[NET]: Fix reversed logic in eth_type_trans().

I got the second compare_eth_addr() test reversed, oops.

Signed-off-by: David S. Miller <davem@davemloft.net>

+1 -1
+1 -1
net/ethernet/eth.c
··· 191 191 */ 192 192 193 193 else if(1 /*dev->flags&IFF_PROMISC*/) { 194 - if (unlikely(!compare_eth_addr(eth->h_dest, dev->dev_addr))) 194 + if (unlikely(compare_eth_addr(eth->h_dest, dev->dev_addr))) 195 195 skb->pkt_type = PACKET_OTHERHOST; 196 196 } 197 197