connect: Fix build when not ENABLE_IPV6

Check for ENABLE_IPV6 before accessing AF_INET6. Fixes build failure
introduced in 1c5d8ac.

Closes https://github.com/curl/curl/pull/10344
This commit is contained in:
Ryan Schmidt 2023-01-25 19:30:23 -06:00 committed by Jay Satiro
parent a17101e347
commit 6a45abfbf6

View File

@ -395,7 +395,10 @@ static CURLcode eyeballer_new(struct eyeballer **pballer,
return CURLE_OUT_OF_MEMORY;
baller->name = ((ai_family == AF_INET)? "ipv4" : (
(ai_family == AF_INET6)? "ipv6" : "ip"));
#ifdef ENABLE_IPV6
(ai_family == AF_INET6)? "ipv6" :
#endif
"ip"));
baller->cf_create = cf_create;
baller->addr = addr;
baller->ai_family = ai_family;