From b159ffb675a274b285acc55204eaf6e83cd72bf8 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 18 Aug 2014 10:19:05 -0400 Subject: [PATCH] Fix windows warning introduced by 0808ed83f9cf312abe229 This will fix the warning "/src/or/config.c:6854:48: error: unused parameter 'group_readable'" that I introduced while fixing 12864. Bug not in any released version of Tor. --- src/or/config.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/or/config.c b/src/or/config.c index f53186a5f..6bb620937 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -6871,6 +6871,8 @@ init_cookie_authentication(const char *fname, const char *header, log_warn(LD_FS,"Unable to make %s group-readable.", escaped(fname)); } } +#else + (void) group_readable; #endif /* Success! */