diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-08-07 19:55:23 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-08-07 19:55:23 +0200 |
commit | f2a6373629787df8fb9f5a8b03f69dea0ac3cce8 (patch) | |
tree | e100616a8734951445b3b5275cadfae350b9e5ef /lib/transfer.c | |
parent | 2ccffbb37e9f453b13c8ded409eacf15d46daf48 (diff) |
readwrite_data: improved C-E decoding error message
Diffstat (limited to 'lib/transfer.c')
-rw-r--r-- | lib/transfer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/transfer.c b/lib/transfer.c index 637fe7a48..f019bb00e 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) { |