git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Patch for http-fetch.c and older curl releases
@ 2006-09-18 22:54 Art Haas
  2006-09-18 23:06 ` Junio C Hamano
  0 siblings, 1 reply; 8+ messages in thread
From: Art Haas @ 2006-09-18 22:54 UTC (permalink / raw)
  To: git

Hi.

Older curl releases do not define CURLE_HTTP_RETURNED_ERROR, they
use CURLE_HTTP_NOT_FOUND instead. The trivial patch below fixes
the build error. Newer curl releases keep the CURLE_HTTP_NOT_FOUND
definition but using a -DCURL_NO_OLDIES preprocessor flag
the old name will not be present in the 'curl.h' header. The
comments in 'curl.h' have more info about the name change.

Signed-off-by:  Art Haas <ahaas@airmail.net>

diff --git a/http-fetch.c b/http-fetch.c
index bc74f30..76fcdc7 100644
--- a/http-fetch.c
+++ b/http-fetch.c
@@ -149,7 +149,7 @@ static int missing__target(int code, int
 	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_NOT_FOUND) ||
 		/* ftp:// URL */
 		(code == 550 && result == CURLE_FTP_COULDNT_RETR_FILE)
 		;

-- 
Man once surrendering his reason, has no remaining guard against absurdities
the most monstrous, and like a ship without rudder, is the sport of every wind.

-Thomas Jefferson to James Smith, 1822

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2006-09-19 12:20 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-09-18 22:54 Patch for http-fetch.c and older curl releases Art Haas
2006-09-18 23:06 ` Junio C Hamano
2006-09-18 23:57   ` Art Haas
2006-09-19  0:14     ` Junio C Hamano
2006-09-19  0:32       ` Art Haas
2006-09-19  0:37         ` Junio C Hamano
2006-09-19  8:31     ` Johannes Schindelin
2006-09-19 12:20       ` Art Haas

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).