Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'js/no-curl-easy-strerror-on-old-curl' into maint
author
Junio C Hamano
<gitster@pobox.com>
Tue, 11 Sep 2012 18:22:58 +0000
(11:22 -0700)
committer
Junio C Hamano
<gitster@pobox.com>
Tue, 11 Sep 2012 18:22:58 +0000
(11:22 -0700)
* js/no-curl-easy-strerror-on-old-curl:
http.c: don't use curl_easy_strerror prior to curl-7.12.0
http.c
patch
|
blob
|
history
raw
(from parent 1:
8bc72fc
)
diff --git
a/http.c
b/http.c
index b61ac85d4b19a0b9121c5b19f2b9c731bbb238d4..18bc6bf7bf17bab9037fade3af2151da6b298b2d 100644
(file)
--- a/
http.c
+++ b/
http.c
@@
-806,10
+806,12
@@
static int http_request(const char *url, void *result, int target, int options)
ret = HTTP_REAUTH;
}
} else {
+#if LIBCURL_VERSION_NUM >= 0x070c00
if (!curl_errorstr[0])
strlcpy(curl_errorstr,
curl_easy_strerror(results.curl_result),
sizeof(curl_errorstr));
+#endif
ret = HTTP_ERROR;
}
} else {