From: Nick Mathewson Date: Mon, 18 Aug 2014 14:19:05 +0000 (-0400) Subject: Fix windows warning introduced by 0808ed83f9cf312abe229 X-Git-Tag: tor-0.2.5.7-rc~15^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b159ffb675a274b285acc55204eaf6e83cd72bf8;p=thirdparty%2Ftor.git 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. --- diff --git a/src/or/config.c b/src/or/config.c index f53186a5f9..6bb620937a 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! */