Fix windows warning introduced by 0808ed83f9

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.
This commit is contained in:
Nick Mathewson 2014-08-18 10:19:05 -04:00
parent 967b4e7c54
commit b159ffb675
1 changed files with 2 additions and 0 deletions

View File

@ -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! */