Skip to content

Commit

Permalink
Merge branch 'js/no-curl-easy-strerror-on-old-curl' into maint
Browse files Browse the repository at this point in the history
* js/no-curl-easy-strerror-on-old-curl:
  http.c: don't use curl_easy_strerror prior to curl-7.12.0
  • Loading branch information
Junio C Hamano committed Sep 11, 2012
2 parents 8bc72fc + 4246b0b commit 2332834
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions http.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 2332834

Please sign in to comment.