diff options
author | Hans Petter Selasky <hselasky@FreeBSD.org> | 2015-01-09 06:39:07 +0000 |
---|---|---|
committer | Hans Petter Selasky <hselasky@FreeBSD.org> | 2015-01-09 06:39:07 +0000 |
commit | ec680ff8a8ad7b7018eaf69ad934178e6464e61e (patch) | |
tree | 1c70b8ce02d7d970c3a4ac867346cccbeb663c3b | |
parent | b29d186cb97eb86c207d689775a83b43e6d7e96e (diff) |
Notes
-rw-r--r-- | sys/ofed/include/net/ip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/ofed/include/net/ip.h b/sys/ofed/include/net/ip.h index 32cc18646c04..0566ad45eb10 100644 --- a/sys/ofed/include/net/ip.h +++ b/sys/ofed/include/net/ip.h @@ -74,7 +74,7 @@ ip_ib_mc_map(uint32_t addr, const unsigned char *bcast, char *buf) buf[13] = 0; buf[14] = 0; buf[15] = 0; - buf[16] = (addr >> 24) & 0x0f; + buf[16] = (addr >> 24) & 0xff; buf[17] = (addr >> 16) & 0xff; buf[18] = (addr >> 8) & 0xff; buf[19] = addr & 0xff; |