Index: src/main.c
===================================================================
RCS file: /cvsroot/curl/curl/src/main.c,v
retrieving revision 1.170
diff -u -r1.170 main.c
--- src/main.c	14 Apr 2003 14:54:18 -0000	1.170
+++ src/main.c	23 Apr 2003 19:59:52 -0000
@@ -363,7 +363,7 @@
        "    --capath <directory> CA directory (made using c_rehash) to verify\n"
        "                    peer against (SSL)\n"
        "    --ciphers <list> What SSL ciphers to use (SSL)\n"
-       "    --compressed    Request a compressed response (using deflate).");
+       "    --compressed    Request a compressed response (using deflate or gzip).");
   puts("    --connect-timeout <seconds> Maximum time allowed for connection\n"
        "    --create-dirs   Create the necessary local directory hierarchy\n"
        "    --crlf          Convert LF to CRLF in upload. Useful for MVS (OS/390)\n"
@@ -2942,7 +2942,7 @@
 
       /* new in curl 7.10 */
       curl_easy_setopt(curl, CURLOPT_ENCODING, 
-                       (config->encoding) ? "deflate" : NULL);
+                       (config->encoding) ? "deflate, gzip" : NULL);
 
       res = curl_easy_perform(curl);
         

