mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-17 10:26:15 +00:00
Use correct mask.
Introduced in https://svnweb.freebsd.org/changeset/base/333603. Thanks to Irene Ruengler for testing and reporting the issue. MFC after: 1 week X-MFC-with: 333603
This commit is contained in:
parent
4c9d19e81f
commit
eef8d4a973
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=334286
@ -831,7 +831,7 @@ sctp_get_prev_mtu(uint32_t val)
|
||||
{
|
||||
uint32_t i;
|
||||
|
||||
val &= 0x00000003;
|
||||
val &= 0xfffffffc;
|
||||
if (val <= sctp_mtu_sizes[0]) {
|
||||
return (val);
|
||||
}
|
||||
@ -857,7 +857,7 @@ sctp_get_next_mtu(uint32_t val)
|
||||
/* select another MTU that is just bigger than this one */
|
||||
uint32_t i;
|
||||
|
||||
val &= 0x00000003;
|
||||
val &= 0xfffffffc;
|
||||
for (i = 0; i < (sizeof(sctp_mtu_sizes) / sizeof(uint32_t)); i++) {
|
||||
if (val < sctp_mtu_sizes[i]) {
|
||||
KASSERT((sctp_mtu_sizes[i] & 0x00000003) == 0,
|
||||
|
Loading…
Reference in New Issue
Block a user