"Joachim Schmitz" <j...@schmitz-digital.de> writes:

>
> This reverts be22d92 (http: avoid empty error messages for some curl errors,
> 2011-09-05) on platforms with older versions of libcURL.
>
> Signed-off-by: Joachim Schmitz <j...@schmitz-digital.de>
> ---
>  http.c | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/http.c b/http.c
> index b61ac85..18bc6bf 100644
> --- a/http.c
> +++ b/http.c
> @@ -806,10 +806,12 @@ static int http_request(const char *url, void *result,
> int target, int options)

Likewrapped X-<

>                               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 {
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to