diff options
| author | Bill Paul <wpaul@FreeBSD.org> | 2000-11-01 18:26:36 +0000 |
|---|---|---|
| committer | Bill Paul <wpaul@FreeBSD.org> | 2000-11-01 18:26:36 +0000 |
| commit | 9cf05fe7a1a3263f2c0bd7e0471b6155232e7e38 (patch) | |
| tree | a59885d244785ca38bf6dd2181a362a73ba726c5 /sys/dev | |
| parent | 13ae9867af569c6ea8a3806e4b912fb548e24cd5 (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/usb/if_aue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/if_aue.c b/sys/dev/usb/if_aue.c index 0c58f2a546db..74700bbfaa3f 100644 --- a/sys/dev/usb/if_aue.c +++ b/sys/dev/usb/if_aue.c @@ -543,7 +543,7 @@ Static void aue_setmulti(sc) if (ifma->ifma_addr->sa_family != AF_LINK) continue; h = aue_crc(LLADDR((struct sockaddr_dl *)ifma->ifma_addr)); - AUE_SETBIT(sc, AUE_MAR + (h >> 3), 1 << (h & 0xF)); + AUE_SETBIT(sc, AUE_MAR + (h >> 3), 1 << (h & 0x7)); } return; |
