Fix failing test due to patricia change

This commit is contained in:
Tim Wojtulewicz 2021-07-23 12:26:09 -07:00
parent 083e0c5bdc
commit 802dfd80c1
2 changed files with 2 additions and 5 deletions

View file

@ -1991,7 +1991,7 @@ bool TableVal::Contains(const IPAddr& addr) const
return false;
}
return (subnets->Lookup(addr, true) != 0);
return (subnets->Lookup(addr, 128, false) != 0);
}
VectorValPtr TableVal::LookupSubnets(const SubNetVal* search)