summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2021-05-07 10:41:34 -0400
committerNick Mathewson <nickm@torproject.org>2021-05-07 10:41:34 -0400
commit18acf43175e7eb9164c4e2baaee7304347fae491 (patch)
treee0004dcded23f6b980fa8d78bb2ba600eda416cc
parent8222f2f3ee6e0629fbe2fead76a6b20de7dc23f1 (diff)
parent5acf18bfaa562cb1bba72caa196c195dff8e162e (diff)
downloadtor-18acf43175e7eb9164c4e2baaee7304347fae491.tar.gz
tor-18acf43175e7eb9164c4e2baaee7304347fae491.zip
Merge branch 'maint-0.4.6' into release-0.4.6
-rw-r--r--changes/bug403803
-rw-r--r--src/core/or/circuituse.c8
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;
}
}