Make compilation work under gcc-warnings

This commit is contained in:
Ola Bini 2015-10-05 14:56:57 -05:00
parent 3b535869a4
commit 598cd4690c
No known key found for this signature in database
GPG Key ID: 465757AF3914B4B7
2 changed files with 1 additions and 2 deletions

View File

@ -545,7 +545,6 @@ static const config_var_t testing_tor_network_defaults[] = {
static char *get_windows_conf_root(void);
#endif
static int options_act_reversible(const or_options_t *old_options, char **msg);
STATIC int options_act(const or_options_t *old_options);
static int options_transition_allowed(const or_options_t *old,
const or_options_t *new,
char **msg);

View File

@ -136,9 +136,9 @@ smartlist_t *get_options_from_transport_options_line(const char *line,
smartlist_t *get_options_for_server_transport(const char *transport);
#ifdef CONFIG_PRIVATE
STATIC int options_act(const or_options_t *old_options);
#ifdef TOR_UNIT_TESTS
extern struct config_format_t options_format;
STATIC int options_act(const or_options_t *old_options);
#endif
STATIC void or_options_free(or_options_t *options);