mirror of
https://github.com/curl/curl.git
synced 2026-06-01 22:04:15 +03:00
readwrite_data: improved C-E decoding error message
This commit is contained in:
parent
2ccffbb37e
commit
f2a6373629
1 changed files with 1 additions and 1 deletions
|
|
@ -589,7 +589,7 @@ static CURLcode readwrite_data(struct SessionHandle *data,
|
|||
failf(data, "Failed writing data");
|
||||
return CURLE_WRITE_ERROR;
|
||||
}
|
||||
failf(data, "Received problem %d in the chunky parser", (int)res);
|
||||
failf(data, "Problem (%d) in the Chunked-Encoded data", (int)res);
|
||||
return CURLE_RECV_ERROR;
|
||||
}
|
||||
else if(CHUNKE_STOP == res) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue