diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-01-15 11:57:49 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-01-16 07:48:17 -0500 |
commit | 6ba4b5e5da9089a061ed64c0e172e72f71c11e75 (patch) | |
tree | ed703d5cb00a8d1ab2b08ddb7f94bb68cf40ead1 /src/app | |
parent | 8d1f31190e12d337ef37c5ba541b195d72dfd663 (diff) | |
download | tor-6ba4b5e5da9089a061ed64c0e172e72f71c11e75.tar.gz tor-6ba4b5e5da9089a061ed64c0e172e72f71c11e75.zip |
Rename dirclient_modes.h identifiers to start with dirclient_
This is an automated commit, generated by this command:
./scripts/maint/rename_c_identifier.py \
directory_must_use_begindir dirclient_must_use_begindir \
directory_fetches_from_authorities dirclient_fetches_from_authorities \
directory_fetches_dir_info_early dirclient_fetches_dir_info_early \
directory_fetches_dir_info_later dirclient_fetches_dir_info_later \
directory_too_idle_to_fetch_descriptors dirclient_too_idle_to_fetch_descriptors
Diffstat (limited to 'src/app')
-rw-r--r-- | src/app/config/config.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/app/config/config.c b/src/app/config/config.c index f9bfb05125..9a5bb5265f 100644 --- a/src/app/config/config.c +++ b/src/app/config/config.c @@ -2419,10 +2419,10 @@ options_act,(const or_options_t *old_options)) /* We may need to reschedule some directory stuff if our status changed. */ if (old_options) { - if (!bool_eq(directory_fetches_dir_info_early(options), - directory_fetches_dir_info_early(old_options)) || - !bool_eq(directory_fetches_dir_info_later(options), - directory_fetches_dir_info_later(old_options)) || + if (!bool_eq(dirclient_fetches_dir_info_early(options), + dirclient_fetches_dir_info_early(old_options)) || + !bool_eq(dirclient_fetches_dir_info_later(options), + dirclient_fetches_dir_info_later(old_options)) || !config_lines_eq(old_options->Bridges, options->Bridges)) { /* Make sure update_router_have_minimum_dir_info() gets called. */ router_dir_info_changed(); |