Commit a3537f57 authored by hydratim's avatar hydratim

Corrected silly mistake where boolean wasn't set

parent c7496405
......@@ -161,8 +161,10 @@ Listener::systemSupportsIpv6(){
continue;
family = ifa->ifa_addr->sa_family;
if (family == AF_INET6)
if (family == AF_INET6) {
supportsIpv6 = true;
continue;
}
}
freeifaddrs(ifaddr);
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