readwrite_data: improved C-E decoding error message
authorDaniel Stenberg <daniel@haxx.se>
Sun, 7 Aug 2011 17:55:23 +0000 (19:55 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Sun, 7 Aug 2011 17:55:23 +0000 (19:55 +0200)
lib/transfer.c

index 637fe7a..f019bb0 100644 (file)
@@ -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) {