1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-09 09:06:57 +02:00

http-fetch: Tidy control flow in process_alternate_response

It's a bit convoluted.  Tidy it up.

Signed-off-by: Mark Wooding <mdw@distorted.org.uk>
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Mark Wooding 2006-02-01 11:44:39 +00:00 committed by Junio C Hamano
parent 7982d74e1c
commit a3f583cbf7

View File

@ -468,13 +468,11 @@ static void process_alternates_response(void *callback_data)
alt_req->url);
active_requests++;
slot->in_use = 1;
if (start_active_slot(slot)) {
return;
} else {
if (!start_active_slot(slot)) {
got_alternates = -1;
slot->in_use = 0;
return;
}
return;
}
} else if (slot->curl_result != CURLE_OK) {
if (slot->http_code != 404 &&