Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment