From ad56a342b400ef57bd2a4087c5d53d48098418bc Mon Sep 17 00:00:00 2001 From: George Kadianakis Date: Mon, 28 Aug 2017 14:54:36 +0300 Subject: Silence some leftover warnings. --- src/or/hs_service.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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: -- cgit v1.2.3-54-g00ecf From b1cb16867e6520bb943d68a9ce804099135e52a7 Mon Sep 17 00:00:00 2001 From: George Kadianakis Date: Mon, 28 Aug 2017 15:00:09 +0300 Subject: Fix compilation warning on old clangs. --- src/or/directory.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src') 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); -- cgit v1.2.3-54-g00ecf