]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Reindent a few lines to fix a GCC warning.
authorNick Mathewson <nickm@torproject.org>
Fri, 7 May 2021 14:39:20 +0000 (10:39 -0400)
committerNick Mathewson <nickm@torproject.org>
Fri, 7 May 2021 14:39:20 +0000 (10:39 -0400)
As of GCC 11.1.1, the compiler warns us about code like this:

     if (a)
         b;
         c;

and that's a good thing: we wouldn't want to "goto fail".  But we
had an instance if this in circuituse.c, which was making our
compilation sad.

Fixes bug 40380; bugfix on 0.3.0.1-alpha.

changes/bug40380 [new file with mode: 0644]
src/core/or/circuituse.c

diff --git a/changes/bug40380 b/changes/bug40380
new file mode 100644 (file)
index 0000000..24d2876
--- /dev/null
@@ -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.
index 7273be3510fb8cbb13b2bc4900e7be3277160823..efd69fb4a385db767e511b74b9b6294d02944f55 100644 (file)
@@ -1315,10 +1315,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;
   }
 }