1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

asyn-ares: correct some bad comments

Closes #5812
This commit is contained in:
Daniel Stenberg 2020-08-14 16:28:29 +02:00
parent 9744614434
commit d68fc02972
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -633,7 +633,7 @@ struct Curl_addrinfo *Curl_resolver_getaddrinfo(struct connectdata *conn,
*waitp = 0; /* default to synchronous response */
#ifdef ENABLE_IPV6 /* CURLRES_IPV6 */
#ifdef ENABLE_IPV6
switch(conn->ip_version) {
default:
#if ARES_VERSION >= 0x010601
@ -649,7 +649,7 @@ struct Curl_addrinfo *Curl_resolver_getaddrinfo(struct connectdata *conn,
family = PF_INET6;
break;
}
#endif /* CURLRES_IPV6 */
#endif /* ENABLE_IPV6 */
bufp = strdup(hostname);
if(bufp) {
@ -670,7 +670,7 @@ struct Curl_addrinfo *Curl_resolver_getaddrinfo(struct connectdata *conn,
/* initial status - failed */
res->last_status = ARES_ENOTFOUND;
#ifdef ENABLE_IPV6 /* CURLRES_IPV6 */
#ifdef ENABLE_IPV6
if(family == PF_UNSPEC) {
if(Curl_ipv6works(conn)) {
res->num_pending = 2;
@ -690,7 +690,7 @@ struct Curl_addrinfo *Curl_resolver_getaddrinfo(struct connectdata *conn,
}
}
else
#endif /* CURLRES_IPV6 */
#endif /* ENABLE_IPV6 */
{
res->num_pending = 1;