Curl_ipv4_resolve_r: only set AI_CANONNAME when needed
As reported in bug report #2987196, the code for ipv6 already did the setting of this bit correctly so we copied that logic into the Curl_ipv4_resolve_r() function as well. KRB code is the only code we know that might need the cannonical name so only resolve it for such requests!
This commit is contained in:
parent
a76fa17681
commit
68aae7f579
@ -160,7 +160,12 @@ Curl_addrinfo *Curl_ipv4_resolve_r(const char *hostname,
|
|||||||
snprintf(sbuf, sizeof(sbuf), "%d", port);
|
snprintf(sbuf, sizeof(sbuf), "%d", port);
|
||||||
sbufptr = sbuf;
|
sbufptr = sbuf;
|
||||||
}
|
}
|
||||||
hints.ai_flags = AI_CANONNAME;
|
#ifdef HAVE_GSSAPI
|
||||||
|
if(conn->data->set.krb)
|
||||||
|
/* if krb is used, we (might) need the canonical host name */
|
||||||
|
hints.ai_flags |= AI_CANONNAME;
|
||||||
|
#endif
|
||||||
|
|
||||||
(void)Curl_getaddrinfo_ex(hostname, sbufptr, &hints, &ai);
|
(void)Curl_getaddrinfo_ex(hostname, sbufptr, &hints, &ai);
|
||||||
|
|
||||||
#elif defined(HAVE_GETHOSTBYNAME_R)
|
#elif defined(HAVE_GETHOSTBYNAME_R)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user