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 | a4c8591c351358e18897f038efbea27cfd295ce6 (patch) | |
tree | 5a5ef384312d94ea6e9f42ee741c7133b2f3d99c /src | |
parent | 1c9890bd3100730b0af1650b90c6a35d8e9e0997 (diff) | |
parent | 5acf18bfaa562cb1bba72caa196c195dff8e162e (diff) | |
download | tor-a4c8591c351358e18897f038efbea27cfd295ce6.tar.gz tor-a4c8591c351358e18897f038efbea27cfd295ce6.zip |
Merge branch 'maint-0.4.6'
Diffstat (limited to 'src')
-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 a28ef14681..044b30b8b3 100644 --- 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; } } |