Commit a3537f57 authored by hydratim's avatar hydratim

Corrected silly mistake where boolean wasn't set

parent c7496405
...@@ -161,9 +161,11 @@ Listener::systemSupportsIpv6(){ ...@@ -161,9 +161,11 @@ Listener::systemSupportsIpv6(){
continue; continue;
family = ifa->ifa_addr->sa_family; family = ifa->ifa_addr->sa_family;
if (family == AF_INET6) if (family == AF_INET6) {
supportsIpv6 = true;
continue; continue;
} }
}
freeifaddrs(ifaddr); freeifaddrs(ifaddr);
return supportsIpv6; return supportsIpv6;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment