mirror of
https://github.com/curl/curl.git
synced 2026-04-14 22:11:45 +03:00
when a chunked error is noticed, store the error number in the error string
to enable better error-tracking
This commit is contained in:
parent
8b0668b99e
commit
dee3163d95
1 changed files with 1 additions and 1 deletions
|
|
@ -831,7 +831,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
|
|||
failf(data, "Failed writing data");
|
||||
return CURLE_WRITE_ERROR;
|
||||
}
|
||||
failf(data, "Received problem in the chunky parser");
|
||||
failf(data, "Received problem %d in the chunky parser", res);
|
||||
return CURLE_RECV_ERROR;
|
||||
}
|
||||
else if(CHUNKE_STOP == res) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue