get central controller docker builds working again

This commit is contained in:
Grant Limberg 2021-11-30 15:22:31 -08:00
parent 6393a4beec
commit 4a1d6f4cc8
No known key found for this signature in database
GPG key ID: 2BA62CCABBB4095A
4 changed files with 4 additions and 3 deletions

View file

@ -2253,7 +2253,7 @@ public:
// Apple on the other hand seems to need this at least on some versions.
#ifndef __APPLE__
bool haveRoute = false;
for(std::vector<InetAddress>::iterator ip(n.managedIps.begin());ip!=n.managedIps.end();++ip) {
for(std::vector<InetAddress>::iterator ip(n.managedIps().begin());ip!=n.managedIps().end();++ip) {
if ((target->netmaskBits() == ip->netmaskBits())&&(target->containsAddress(*ip))) {
haveRoute = true;
break;