From: Daniel Stenberg Date: Sun, 7 Aug 2011 17:55:23 +0000 (+0200) Subject: readwrite_data: improved C-E decoding error message X-Git-Tag: curl-7_22_0~155 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f2a6373629787df8fb9f5a8b03f69dea0ac3cce8;p=thirdparty%2Fcurl.git readwrite_data: improved C-E decoding error message --- diff --git a/lib/transfer.c b/lib/transfer.c index 637fe7a486..f019bb00e1 100644 --- a/lib/transfer.c +++ b/lib/transfer.c @@ -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) {