summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/or/directory.c2
1 files changed, 1 insertions, 1 deletions
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;
}
}