diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-10-01 22:42:46 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-10-01 22:42:46 +0000 |
commit | dc27488c47ececa8801c9173006a103f190e73e7 (patch) | |
tree | 8944ca7ce0910b02e18e7abc18211f4a8d7bdd87 | |
parent | 375e615a6dc68f46c191c44f6b8c57c7346ba933 (diff) |
corrected for IPv6
-rw-r--r-- | lib/connect.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/connect.c b/lib/connect.c index 34dd72c28..ec68162c3 100644 --- a/lib/connect.c +++ b/lib/connect.c @@ -172,6 +172,7 @@ CURLcode Curl_connecthost(struct connectdata *conn, struct timeval before = Curl_tvnow(); #ifdef ENABLE_IPV6 + struct addrinfo *ai; /* * Connecting with IPv6 support is so much easier and cleanly done */ |