adjust INSIST now that dev->dscp is unsigned

This commit is contained in:
Mark Andrews 2014-07-19 11:56:23 +10:00
parent 044c780437
commit a1dee90bfb

View file

@ -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) {