diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-04-22 22:33:39 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-04-22 22:33:39 +0000 |
commit | a84b0fbd527ee9ca79661ba1a4d2768fd356334f (patch) | |
tree | 6fea26a495f745a8886e758bdb837fccfd67892e /lib/http_chunks.c | |
parent | c95814c04d6a0436e5c4c88d2e1d57c7e0c91060 (diff) |
Dan Fandrich corrected the error messages on "bad encoding".
Diffstat (limited to 'lib/http_chunks.c')
-rw-r--r-- | lib/http_chunks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http_chunks.c b/lib/http_chunks.c index ca9b55366..90f891f31 100644 --- a/lib/http_chunks.c +++ b/lib/http_chunks.c @@ -201,7 +201,7 @@ CHUNKcode Curl_httpchunk_read(struct connectdata *conn, default: failf (conn->data, "Unrecognized content encoding type. " - "libcurl understands `identity' and `deflate' " + "libcurl understands `identity', `deflate' and `gzip' " "content encodings."); return CHUNKE_BAD_ENCODING; } |