aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/de
diff options
context:
space:
mode:
authorMatthew N. Dodd <mdodd@FreeBSD.org>2003-03-21 17:53:16 +0000
committerMatthew N. Dodd <mdodd@FreeBSD.org>2003-03-21 17:53:16 +0000
commit868d8b6286b3ef1e3a6d0912bdd3e775ff510397 (patch)
treec9d7c27b0ae3e258aa728bc72628c7cd24b17f63 /sys/dev/de
parent3cc4ca2df51dfb19b194591eff91945838ceb371 (diff)
Notes
Diffstat (limited to 'sys/dev/de')
-rw-r--r--sys/dev/de/if_de.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/de/if_de.c b/sys/dev/de/if_de.c
index d1865865a099b..44de0806d1953 100644
--- a/sys/dev/de/if_de.c
+++ b/sys/dev/de/if_de.c
@@ -3058,7 +3058,7 @@ tulip_addr_filter(
* receiving every multicast.
*/
if ((sc->tulip_flags & TULIP_ALLMULTI) == 0) {
- hash = tulip_mchash(etherbroadcastaddr);
+ hash = tulip_mchash(sc->tulip_if.if_broadcastaddr);
#if BYTE_ORDER == BIG_ENDIAN
sp[hash >> 4] |= bswap32(1 << (hash & 0xF));
#else