summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7baa3e8)
raw | patch | inline | side by side (parent: 7baa3e8)
author | Junio C Hamano <junkio@cox.net> | |
Sat, 15 Oct 2005 18:13:55 +0000 (11:13 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sat, 15 Oct 2005 18:13:55 +0000 (11:13 -0700) |
Signed-off-by: Junio C Hamano <junkio@cox.net>
http-fetch.c | patch | blob | history |
diff --git a/http-fetch.c b/http-fetch.c
index 40bd0b430b247595b60480663fb7043535ffd229..da4d2f2c699f4265e8977db947a19399e4f06c54 100644 (file)
--- a/http-fetch.c
+++ b/http-fetch.c
}
if (request->curl_result != CURLE_OK && request->http_code != 416) {
- ret = error("%s", request->errorstr);
+ ret = error("%s (curl_result = %d, http_code = %ld, sha1 = %s)",
+ request->errorstr, request->curl_result,
+ request->http_code, hex);
release_request(request);
return ret;
}