From: Nick Mathewson Date: Tue, 8 Oct 2019 15:37:46 +0000 (-0400) Subject: config.c: make a couple of arguments const. X-Git-Tag: tor-0.4.3.1-alpha~301^2~8 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=911b16e6e7ba657024734e7a36fad56c22c740a9;p=thirdparty%2Ftor.git config.c: make a couple of arguments const. These functions do not modify their inputs, so they can take const arguments. --- diff --git a/src/app/config/config.c b/src/app/config/config.c index 26b1048022..1abe1e13a3 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;