From 2adee31a26f8048bca86391921a58cba3622f384 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 23 Feb 2005 22:14:34 +0000 Subject: [PATCH] Improve log message on unrecognized encoding to indicate that we can cope. svn:r3676 --- src/or/directory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } }