]> granicus.if.org Git - curl/commitdiff
corrected mistake
authorDaniel Stenberg <daniel@haxx.se>
Mon, 26 Apr 2004 15:11:56 +0000 (15:11 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 26 Apr 2004 15:11:56 +0000 (15:11 +0000)
lib/hostip6.c

index 8ddcd84b1a83ab0068f45e08b0562ad787b7c10d..8b3f6114660cb29e7e97a76882ebcc57a24ee3e4 100644 (file)
@@ -204,7 +204,7 @@ bool Curl_ipvalid(struct SessionHandle *data)
   if(data->set.ip_version == CURL_IPRESOLVE_V6) {
     /* see if we have an IPv6 stack */
     curl_socket_t s = socket(PF_INET6, SOCK_DGRAM, 0);
-    if (s != CURL_SOCKET_BAD)
+    if (s == CURL_SOCKET_BAD)
       /* an ipv6 address was requested and we can't get/use one */
       return FALSE;
     sclose(s);