]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Improve log message on unrecognized encoding to indicate that we can cope.
authorNick Mathewson <nickm@torproject.org>
Wed, 23 Feb 2005 22:14:34 +0000 (22:14 +0000)
committerNick Mathewson <nickm@torproject.org>
Wed, 23 Feb 2005 22:14:34 +0000 (22:14 +0000)
svn:r3676

src/or/directory.c

index e3087a9cc53886f85600b9c133335d0cf5622e3f..d1a813c2240e7545d77f0366eb3a792a18994375 100644 (file)
@@ -545,7 +545,7 @@ parse_http_response(const char *headers, int *code, time_t *date,
     } else if (!strcmp(enc, "gzip") || !strcmp(enc, "x-gzip")) {
       *compression = GZIP_METHOD;
     } else {
-      log_fn(LOG_INFO, "Unrecognized content encoding: '%s'", enc);
+      log_fn(LOG_INFO, "Unrecognized content encoding: '%s'. Trying to deal.", enc);
       *compression = -1;
     }
   }