diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-10-22 13:56:07 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-10-22 13:56:11 -0400 |
commit | 8a27023d211aa62a456237d41766b825fe91aa9b (patch) | |
tree | 815b0467764dc16ac2446d127813de2674292438 /src/app/config/config.h | |
parent | 697d99e50411b29eeb82667a870bd10c5efa9509 (diff) | |
download | tor-8a27023d211aa62a456237d41766b825fe91aa9b.tar.gz tor-8a27023d211aa62a456237d41766b825fe91aa9b.zip |
Remove unused arguments from options_validate().
This change breaks compilation; a subsequent commit will fix it with
a coccinelle patch.
Diffstat (limited to 'src/app/config/config.h')
-rw-r--r-- | src/app/config/config.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/app/config/config.h b/src/app/config/config.h index 0c61fc7c0f..32ddc67652 100644 --- a/src/app/config/config.h +++ b/src/app/config/config.h @@ -279,8 +279,7 @@ STATIC int options_validate_single_onion(or_options_t *options, char **msg); STATIC int options_validate(or_options_t *old_options, or_options_t *options, - or_options_t *default_options, - int from_setconf, char **msg); + char **msg); STATIC int parse_transport_line(const or_options_t *options, const char *line, int validate_only, int server); |