In commit
57d91b13f20529a23df8c29eaf612d8483e318d8, I missed
one set of "#ifdev IPV6 ... #endif" guards for a piece of code
only relevant for IPv6 support in the generator. This broke
the build with --disable-ipv6, or without IPv6 support on the
build system.
exit(1);
}
+#ifdef IPV6
/* IPv6 addresses can have a scope */
if (hints_ai_family == AF_INET6) {
start_scope_str = strchr(start, '%');
exit(1);
}
}
+#endif
/* parse end address */
memset(&addr_hints, 0, sizeof(struct addrinfo));