Skip to content

Commit

Permalink
Merge 3cd6e47 into e73b478
Browse files Browse the repository at this point in the history
  • Loading branch information
Roguelazer committed Jun 24, 2019
2 parents e73b478 + 3cd6e47 commit 2598a55
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/asyn-ares.c
Expand Up @@ -734,7 +734,11 @@ CURLcode Curl_set_dns_servers(struct Curl_easy *data,
return CURLE_OK;

#if (ARES_VERSION >= 0x010704)
#if (ARES_VERSION >= 0x011100)
ares_result = ares_set_servers_ports_csv(data->state.resolver, servers);
#else
ares_result = ares_set_servers_csv(data->state.resolver, servers);
#endif
switch(ares_result) {
case ARES_SUCCESS:
result = CURLE_OK;
Expand Down

0 comments on commit 2598a55

Please sign in to comment.