tor

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

commit 34cadefe3455d2536d207e62caaade6a723a0ddb
parent 8183640ada0ccef0c1f123a312b99c87269a1cae
Author: Nick Mathewson <nickm@torproject.org>
Date:   Tue, 20 Nov 2018 09:04:35 -0500

Merge branch 'maint-0.3.5'

Diffstat:
Achanges/bug28524 | 4++++
Msrc/feature/control/control.c | 4++++
2 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/changes/bug28524 b/changes/bug28524 @@ -0,0 +1,4 @@ + o Minor bugfixes (restart-in-process, boostrap): + - Add missing resets of bootstrap tracking state when shutting + down (regression caused by ticket 27169). Fixes bug 28524; + bugfix on 0.3.5.1-alpha. diff --git a/src/feature/control/control.c b/src/feature/control/control.c @@ -7885,8 +7885,12 @@ control_free_all(void) flush_queued_events_event = NULL; } bootstrap_percent = BOOTSTRAP_STATUS_UNDEF; + bootstrap_phase = BOOTSTRAP_STATUS_UNDEF; notice_bootstrap_percent = 0; bootstrap_problems = 0; + bootstrap_first_orconn = 0; + bootstrap_dir_progress = BOOTSTRAP_STATUS_UNDEF; + bootstrap_dir_phase = BOOTSTRAP_STATUS_UNDEF; authentication_cookie_is_set = 0; global_event_mask = 0; disable_log_messages = 0;