mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-27 12:02:10 -05:00
adjust INSIST now that dev->dscp is unsigned
This commit is contained in:
parent
044c780437
commit
a1dee90bfb
1 changed files with 1 additions and 1 deletions
|
|
@ -1541,7 +1541,7 @@ build_msghdr_send(isc__socket_t *sock, isc_socketevent_t *dev,
|
|||
{
|
||||
int dscp = (dev->dscp << 2) & 0xff;
|
||||
|
||||
INSIST(dev->dscp < 0x40 && dev->dscp >= 0);
|
||||
INSIST(dev->dscp < 0x40);
|
||||
|
||||
#ifdef IP_TOS
|
||||
if (sock->pf == AF_INET && sock->pktdscp) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue