multi_runsingle: switch an if() condition for readability
... because there's an identical check right next to it so using the operators in the check in the same order increases readability.
This commit is contained in:
@@ -1529,7 +1529,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
|
||||
else
|
||||
follow = FOLLOW_RETRY;
|
||||
easy->result = Curl_done(&easy->easy_conn, CURLE_OK, FALSE);
|
||||
if(easy->result == CURLE_OK) {
|
||||
if(CURLE_OK == easy->result) {
|
||||
easy->result = Curl_follow(data, newurl, follow);
|
||||
if(CURLE_OK == easy->result) {
|
||||
multistate(easy, CURLM_STATE_CONNECT);
|
||||
|
Reference in New Issue
Block a user