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'
author
Junio C Hamano
<gitster@pobox.com>
Mon, 3 Sep 2012 22:54:30 +0000
(15:54 -0700)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 3 Sep 2012 22:54:30 +0000
(15:54 -0700)
Done to support compilation on __TANDEM, but is independently useful
for people with older version of libcURL.
* 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:
4052719
)
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 {