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 | 5acf18bfaa562cb1bba72caa196c195dff8e162e (patch) | |
tree | d356d6aef574f658fa83c8005be734a9aece0bd3 | |
parent | 0397a9cb49a34d56cd85c2b6b16f8fbd72cd2e3d (diff) | |
parent | 7c86f34340acf7d8cf35501e71b03f2feba1245e (diff) | |
download | tor-5acf18bfaa562cb1bba72caa196c195dff8e162e.tar.gz tor-5acf18bfaa562cb1bba72caa196c195dff8e162e.zip |
Merge branch 'maint-0.4.5' into maint-0.4.6
-rw-r--r-- | changes/bug40380 | 3 | ||||
-rw-r--r-- | src/core/or/circuituse.c | 8 |
2 files changed, 7 insertions, 4 deletions
diff --git a/changes/bug40380 b/changes/bug40380 new file mode 100644 index 0000000000..24d2876b7d --- /dev/null +++ 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 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; } } |