tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 03e0881d542bb9f4047edac260c22ce7706c1209
parent 02275813321b37f6fa341f3c7803097097927461
Author: David Goulet <dgoulet@torproject.org>
Date:   Tue, 27 Jan 2026 10:40:37 -0500

Merge branch 'maint-0.4.8'

Diffstat:
Achanges/ticket40951 | 4++++
Msrc/core/or/relay.c | 2+-
2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/changes/ticket40951 b/changes/ticket40951 @@ -0,0 +1,4 @@ + o Minor bugfixes (relay): + - Downgrade log warn to info as the error condition is possible under normal + circumstances. Fixes bug 40951; bugfix on 0.3.5.1-alpha. + diff --git a/src/core/or/relay.c b/src/core/or/relay.c @@ -344,7 +344,7 @@ circuit_receive_relay_cell(cell_t *cell, circuit_t *circ, cell->command = CELL_RELAY; /* can't be relay_early anyway */ if ((reason = circuit_receive_relay_cell(cell, TO_CIRCUIT(splice_), CELL_DIRECTION_IN)) < 0) { - log_warn(LD_REND, "Error relaying cell across rendezvous; closing " + log_info(LD_REND, "Error relaying cell across rendezvous; closing " "circuits"); return reason; }