summaryrefslogtreecommitdiffstats
path: root/sys/dev/fe
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/fe')
-rw-r--r--sys/dev/fe/if_fe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/fe/if_fe.c b/sys/dev/fe/if_fe.c
index ddf3fc5..4713ef4 100644
--- a/sys/dev/fe/if_fe.c
+++ b/sys/dev/fe/if_fe.c
@@ -250,7 +250,7 @@ valid_Ether_p (u_char const * addr, unsigned vendor)
case 0x020000:
/* Same as above, but a local address is allowed in
this context. */
- if ((addr[0] & 0x01) != 0) return 0;
+ if (ETHER_IS_MULTICAST(addr)) return 0;
break;
default:
/* Make sure the vendor part matches if one is given. */
OpenPOWER on IntegriCloud