Browse Source

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

svn:r3676
Nick Mathewson 20 years ago
parent
commit
2adee31a26
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/or/directory.c

+ 1 - 1
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")) {
     } else if (!strcmp(enc, "gzip") || !strcmp(enc, "x-gzip")) {
       *compression = GZIP_METHOD;
       *compression = GZIP_METHOD;
     } else {
     } else {
-      log_fn(LOG_INFO, "Unrecognized content encoding: '%s'", enc);
+      log_fn(LOG_INFO, "Unrecognized content encoding: '%s'. Trying to deal.", enc);
       *compression = -1;
       *compression = -1;
     }
     }
   }
   }