mirror of
https://github.com/curl/curl.git
synced 2026-06-03 10:34:15 +03:00
make a more descriptive error message when CURLE_HTTP_RETURNED_ERROR is
returned
This commit is contained in:
parent
2563731c4d
commit
4eb2a6c9a3
1 changed files with 2 additions and 1 deletions
|
|
@ -531,7 +531,8 @@ CURLcode Curl_readwrite(struct connectdata *conn,
|
|||
/* If we have been told to fail hard on HTTP-errors,
|
||||
here is the check for that: */
|
||||
/* serious error, go home! */
|
||||
failf (data, "The requested file was not found");
|
||||
failf (data, "The requested URL returned error: %d",
|
||||
k->httpcode);
|
||||
return CURLE_HTTP_RETURNED_ERROR;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue