diff options
author | Nick Mathewson <nickm@torproject.org> | 2021-05-07 10:41:34 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2021-05-07 10:41:34 -0400 |
commit | 7c86f34340acf7d8cf35501e71b03f2feba1245e (patch) | |
tree | d94caf42e32f4d0037ea87c059abbdd2ae9729a1 /src/core | |
parent | 7fe819c9510bc0b738c55abf7339b64498265c05 (diff) | |
parent | 48dd87933dd1c592937ef62d20aeac8998edc0fb (diff) | |
download | tor-7c86f34340acf7d8cf35501e71b03f2feba1245e.tar.gz tor-7c86f34340acf7d8cf35501e71b03f2feba1245e.zip |
Merge branch 'maint-0.4.4' into maint-0.4.5
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/or/circuituse.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/or/circuituse.c b/src/core/or/circuituse.c index 0f3fc29361..059e43ec47 100644 --- a/src/core/or/circuituse.c +++ b/src/core/or/circuituse.c @@ -1320,10 +1320,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; } } |