Commit 62056a64 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

oops, missed the shut-off non-blocking fix

parent b2362bf5
Loading
Loading
Loading
Loading
+13 −9
Original line number Diff line number Diff line
@@ -1244,8 +1244,12 @@ static CURLcode ConnectPlease(struct UrlData *data,
    conntimeout.tv_sec = conn->data->connecttimeout;
    conntimeout.tv_usec = 0;	
    if(-1 != select (conn->firstsocket + 1, NULL, &connectfd, NULL, &conntimeout)) {
		  if (FD_ISSET(conn->firstsocket, &connectfd))
      if (FD_ISSET(conn->firstsocket, &connectfd)) {
        /* shut off non-blocking again */
        nonblock = 0;
        ioctlsocket(conn->firstsocket, FIONBIO, &nonblock);
        return CURLE_OK;
      }
      else
        errno = EINTR;
    }