Commit 8230af0b authored by Björn Stenberg's avatar Björn Stenberg Committed by Daniel Stenberg
Browse files

Typo fix in trynextip().

parent 1709e5e9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -573,7 +573,7 @@ static CURLcode trynextip(struct connectdata *conn,

    do {
      ai = ai->ai_next;
    } while(ai && ai->ai_family == family);
    } while(ai && ai->ai_family != family);
  }
  Curl_closesocket(conn, fd_to_close);
  return CURLE_COULDNT_CONNECT;