diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-08-18 10:19:05 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-08-18 10:19:05 -0400 |
commit | b159ffb675a274b285acc55204eaf6e83cd72bf8 (patch) | |
tree | 3360eda56883e0529bb01d5faf1cb02fecb80053 | |
parent | 967b4e7c54b53391e1a0b67e0a5bf70bc2e6a896 (diff) | |
download | tor-b159ffb675a274b285acc55204eaf6e83cd72bf8.tar.gz tor-b159ffb675a274b285acc55204eaf6e83cd72bf8.zip |
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.
-rw-r--r-- | src/or/config.c | 2 |
1 files changed, 2 insertions, 0 deletions
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! */ |