Commit b5bbc04a authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

return error properly when a non-blocking connect fails using the multi

interface
parent 265c5861
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -387,6 +387,8 @@ CURLcode Curl_is_connected(struct connectdata *conn,
      return CURLE_OK;
    }
    /* nope, not connected for real */
    if(err)
      return CURLE_COULDNT_CONNECT;
  }

  /*