From: Nick Mathewson Date: Wed, 23 Feb 2005 22:14:34 +0000 (+0000) Subject: Improve log message on unrecognized encoding to indicate that we can cope. X-Git-Tag: tor-0.1.0.1-rc~211 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2adee31a26f8048bca86391921a58cba3622f384;p=thirdparty%2Ftor.git Improve log message on unrecognized encoding to indicate that we can cope. svn:r3676 --- diff --git a/src/or/directory.c b/src/or/directory.c index e3087a9cc5..d1a813c224 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -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; } }