aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-05-01 17:49:47 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-05-01 17:49:47 +0000
commit19a4314e7f0fb12e39365153f66dab83b2c8db53 (patch)
treee478ec40801d7454b6cc5d1ec53ea23cbdebdba5
parentd166e85e0a1e58aeb999328e3bf003c0d55a251c (diff)
corrected a comment about gzip not being supported
-rw-r--r--lib/transfer.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/transfer.c b/lib/transfer.c
index 2cfbfae3b..2ab0447bb 100644
--- a/lib/transfer.c
+++ b/lib/transfer.c
@@ -647,12 +647,12 @@ CURLcode Curl_readwrite(struct connectdata *conn,
else if (checkprefix("Content-Encoding:", k->p) &&
data->set.encoding) {
/*
- * Process Content-Encoding. Look for the values: identity, gzip,
- * deflate, compress, x-gzip and x-compress. x-gzip and
+ * Process Content-Encoding. Look for the values: identity,
+ * gzip, deflate, compress, x-gzip and x-compress. x-gzip and
* x-compress are the same as gzip and compress. (Sec 3.5 RFC
- * 2616). zlib cannot handle compress, and gzip is not currently
- * implemented. However, errors are handled further down when the
- * response body is processed 08/27/02 jhrg */
+ * 2616). zlib cannot handle compress. However, errors are
+ * handled further down when the response body is processed
+ */
char *start;
/* Find the first non-space letter */