aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2024-10-24 18:55:29 -0400
committerRoger Dingledine <arma@torproject.org>2024-10-24 18:55:29 -0400
commit9cb7a19e22cfe23661e82aea11a274ce2173c138 (patch)
tree1c69e92e482deb5e2bb3021037814357a5ab656c
parent0e21b79227a6588376ecfde21cd1af7661c5be0b (diff)
downloadtor-9cb7a19e22cfe23661e82aea11a274ce2173c138.tar.gz
tor-9cb7a19e22cfe23661e82aea11a274ce2173c138.zip
whitespace fix while debugging #40981
-rw-r--r--src/core/or/circuituse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/or/circuituse.c b/src/core/or/circuituse.c
index 6a73fbe87c..37c6cc3782 100644
--- a/src/core/or/circuituse.c
+++ b/src/core/or/circuituse.c
@@ -1020,7 +1020,7 @@ circuit_stream_is_being_handled(entry_connection_t *conn,
if (CIRCUIT_IS_ORIGIN(circ) &&
!circ->marked_for_close &&
(circ->purpose == CIRCUIT_PURPOSE_C_GENERAL ||
- circ->purpose == CIRCUIT_PURPOSE_CONFLUX_LINKED) &&
+ circ->purpose == CIRCUIT_PURPOSE_CONFLUX_LINKED) &&
(!circ->timestamp_dirty ||
circ->timestamp_dirty + get_options()->MaxCircuitDirtiness > now)) {
origin_circuit_t *origin_circ = TO_ORIGIN_CIRCUIT(circ);