Improve log message on unrecognized encoding to indicate that we can cope.

svn:r3676
This commit is contained in:
Nick Mathewson
2005-02-23 22:14:34 +00:00
parent 3135234f4d
commit 2adee31a26
+1 -1
View 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;
}
}