From: Junio C Hamano Date: Sat, 16 Sep 2006 18:06:02 +0000 (-0700) Subject: Add ftp:// protocol support for git-http-fetch X-Git-Tag: v1.4.3-rc1~80^2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=4adffc7b54e8c5d8fc7510007dd9b8235a67430f;p=git.git Add ftp:// protocol support for git-http-fetch Based on Sasha Khapyorsky's patch but adjusted to the refactored "missing target" detection code. It might have been better if the program were called git-url-fetch but it is too late now ;-). Signed-off-by: Junio C Hamano --- diff --git a/http-fetch.c b/http-fetch.c index 98cf52db4..bc74f30f7 100644 --- a/http-fetch.c +++ b/http-fetch.c @@ -149,7 +149,9 @@ static int missing__target(int code, int result) return /* file:// URL -- do we ever use one??? */ (result == CURLE_FILE_COULDNT_READ_FILE) || /* http:// and https:// URL */ - (code == 404 && result == CURLE_HTTP_RETURNED_ERROR) + (code == 404 && result == CURLE_HTTP_RETURNED_ERROR) || + /* ftp:// URL */ + (code == 550 && result == CURLE_FTP_COULDNT_RETR_FILE) ; }