tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit acb97cfa689577b9d3a22eab7673bda6e47918f0
parent 89c355b38601e0eda4e999219946bf2431d5de51
Author: Nick Mathewson <nickm@torproject.org>
Date:   Wed, 20 Nov 2019 08:26:37 -0500

log config: Set safelogging_changed even if we aren't running Tor.

Diffstat:
Msrc/app/config/config.c | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/app/config/config.c b/src/app/config/config.c @@ -1808,6 +1808,8 @@ options_start_log_transaction(const or_options_t *old_options, log_transaction_t *xn = tor_malloc_zero(sizeof(log_transaction_t)); xn->old_min_log_level = get_min_log_level(); + xn->safelogging_changed = !old_options || + old_options->SafeLogging_ != options->SafeLogging_; if (! running_tor) goto done; @@ -1822,9 +1824,6 @@ options_start_log_transaction(const or_options_t *old_options, goto done; } - xn->safelogging_changed = !old_options || - old_options->SafeLogging_ != options->SafeLogging_; - xn->logs_initialized = true; done: