tor

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

commit a4c8591c351358e18897f038efbea27cfd295ce6
parent 1c9890bd3100730b0af1650b90c6a35d8e9e0997
Author: Nick Mathewson <nickm@torproject.org>
Date:   Fri,  7 May 2021 10:41:34 -0400

Merge branch 'maint-0.4.6'

Diffstat:
Achanges/bug40380 | 3+++
Msrc/core/or/circuituse.c | 8++++----
2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/changes/bug40380 b/changes/bug40380 @@ -0,0 +1,3 @@ + o Minor bugfixes (compiler warnings): + - Fix an indentation problem that led to a warning from GCC 11.1.1. + Fixes bug 40380; bugfix on 0.3.0.1-alpha. diff --git a/src/core/or/circuituse.c b/src/core/or/circuituse.c @@ -1306,10 +1306,10 @@ circuit_predict_and_launch_new(void) if (router_have_consensus_path() == CONSENSUS_PATH_INTERNAL) flags |= CIRCLAUNCH_IS_INTERNAL; - log_info(LD_CIRC, - "Have %d clean circs need another buildtime test circ.", num); - circuit_launch(CIRCUIT_PURPOSE_C_GENERAL, flags); - return; + log_info(LD_CIRC, + "Have %d clean circs need another buildtime test circ.", num); + circuit_launch(CIRCUIT_PURPOSE_C_GENERAL, flags); + return; } }