diff options
author | Daniel Stenberg <daniel@haxx.se> | 2014-07-25 09:25:16 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-07-25 09:26:13 +0200 |
commit | c56aa6f1214157e01bd7e0f9e3a7efe8089e6101 (patch) | |
tree | 991fc41f31965ef58fe2f7e9a7f1371898a65d09 /lib/asyn-ares.c | |
parent | e1b13eba754f2bbd334b03fd7213d5d219900cf7 (diff) | |
download | curl-c56aa6f1214157e01bd7e0f9e3a7efe8089e6101.tar.gz |
c-ares: fix build without IPv6 support
Bug: http://curl.haxx.se/mail/lib-2014-07/0337.html
Reported-by: Spork Schivago
Diffstat (limited to 'lib/asyn-ares.c')
-rw-r--r-- | lib/asyn-ares.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asyn-ares.c b/lib/asyn-ares.c index d651c252d..cb99a1f46 100644 --- a/lib/asyn-ares.c +++ b/lib/asyn-ares.c @@ -669,7 +669,7 @@ CURLcode Curl_set_dns_local_ip4(struct SessionHandle *data, CURLcode Curl_set_dns_local_ip6(struct SessionHandle *data, const char *local_ip6) { -#if (ARES_VERSION >= 0x010704) +#if (ARES_VERSION >= 0x010704) && defined(ENABLE_IPV6) unsigned char a6[INET6_ADDRSTRLEN]; if((!local_ip6) || (local_ip6[0] == 0)) { |