From 98dbd675cbb3de2e5308a7662a3d3c711fb0d81d Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Wed, 8 Oct 2008 12:13:01 +0000 Subject: [PATCH] (rpc) #1330: Uncompressed, non-DEFLATE response broken --- daemon/remote.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/remote.c b/daemon/remote.c index 9ce4028ac..02096001c 100644 --- a/daemon/remote.c +++ b/daemon/remote.c @@ -1057,7 +1057,7 @@ processRequests( const char * host, curl = curl_easy_init( ); curl_easy_setopt( curl, CURLOPT_VERBOSE, debug ); #ifdef HAVE_LIBZ - curl_easy_setopt( curl, CURLOPT_ENCODING, "deflate" ); +// curl_easy_setopt( curl, CURLOPT_ENCODING, "deflate" ); #endif curl_easy_setopt( curl, CURLOPT_USERAGENT, MY_NAME "/" LONG_VERSION_STRING );