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 коммит произвёл Junio C Hamano
Родитель 7982d74e1c
Коммит a3f583cbf7
1 изменённых файлов: 2 добавлений и 4 удалений

Просмотреть файл

@ -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 &&