diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-08-28 10:05:21 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-08-28 10:05:21 -0400 |
commit | b27c029266b3d72011b58cea2795a65613a422f6 (patch) | |
tree | bc5309c5568d6f8db71ed05c7340500ea1fb646a | |
parent | e8c584176b92799126f9280a51f45e40db3cc119 (diff) | |
parent | b1cb16867e6520bb943d68a9ce804099135e52a7 (diff) | |
download | tor-b27c029266b3d72011b58cea2795a65613a422f6.tar.gz tor-b27c029266b3d72011b58cea2795a65613a422f6.zip |
Merge remote-tracking branch 'asn/bug23335'
-rw-r--r-- | src/or/directory.h | 1 | ||||
-rw-r--r-- | src/or/hs_service.c | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/or/directory.h b/src/or/directory.h index fc71bf800b..42bcb55eb2 100644 --- a/src/or/directory.h +++ b/src/or/directory.h @@ -188,7 +188,6 @@ STATIC char *accept_encoding_header(void); STATIC int allowed_anonymous_connection_compression_method(compress_method_t); STATIC void warn_disallowed_anonymous_compression_method(compress_method_t); -typedef struct response_handler_args_t response_handler_args_t; STATIC int handle_response_fetch_hsdesc_v3(dir_connection_t *conn, const response_handler_args_t *args); diff --git a/src/or/hs_service.c b/src/or/hs_service.c index a207fe3318..5ff118222d 100644 --- a/src/or/hs_service.c +++ b/src/or/hs_service.c @@ -2392,10 +2392,10 @@ service_desc_hsdirs_changed(const hs_service_t *service, /* Check whether the set of HSDirs changed */ if (!smartlist_strings_eq(b64_responsible_dirs, desc->previous_hsdirs)) { - log_warn(LD_GENERAL, "Received new dirinfo and set of hsdirs changed!"); + log_info(LD_GENERAL, "Received new dirinfo and set of hsdirs changed!"); retval = 1; } else { - log_warn(LD_GENERAL, "No change in hsdir set!"); + log_debug(LD_GENERAL, "No change in hsdir set!"); } done: |