commit 911b16e6e7ba657024734e7a36fad56c22c740a9 Author: Nick Mathewson nickm@torproject.org Date: Tue Oct 8 11:37:46 2019 -0400
config.c: make a couple of arguments const.
These functions do not modify their inputs, so they can take const arguments. --- src/app/config/config.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/app/config/config.c b/src/app/config/config.c index 26b104802..1abe1e13a 100644 --- a/src/app/config/config.c +++ b/src/app/config/config.c @@ -5060,12 +5060,12 @@ normalize_nickname_list(config_line_t **normalized_out, * filename if it doesn't exist. */ static char * -find_torrc_filename(config_line_t *cmd_arg, +find_torrc_filename(const config_line_t *cmd_arg, int defaults_file, int *using_default_fname, int *ignore_missing_torrc) { char *fname=NULL; - config_line_t *p_index; + const config_line_t *p_index; const char *fname_opt = defaults_file ? "--defaults-torrc" : "-f"; const char *ignore_opt = defaults_file ? NULL : "--ignore-missing-torrc";
@@ -5144,7 +5144,7 @@ load_torrc_from_stdin(void) * Return the contents of the file on success, and NULL on failure. */ static char * -load_torrc_from_disk(config_line_t *cmd_arg, int defaults_file) +load_torrc_from_disk(const config_line_t *cmd_arg, int defaults_file) { char *fname=NULL; char *cf = NULL;
tor-commits@lists.torproject.org