tor

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

commit df1dadd5b4a4f652fb338d14ae0f6277cdfc5d8f
parent 008fb86a5af0cc79896642a41ee225e31a98bb17
Author: David Goulet <dgoulet@torproject.org>
Date:   Tue, 30 Sep 2025 16:22:02 -0400

Fix log integer format

Signed-off-by: David Goulet <dgoulet@torproject.org>

Diffstat:
Msrc/core/or/congestion_control_flow.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/core/or/congestion_control_flow.c b/src/core/or/congestion_control_flow.c @@ -502,7 +502,7 @@ flow_control_decide_xoff(edge_connection_t *stream) /* If we've exceeded our XOFF grace period, we need to send an XOFF. */ log_info(LD_EDGE, "Sending XOFF: total-buffered=%" TOR_PRIuSZ - " xoff-limit=%d grace-period-dur=%" TOR_PRIuSZ "usec", + " xoff-limit=%d grace-period-dur=%" PRIu64 "usec", total_buffered, buffer_limit_xoff, now - stream->xoff_grace_period_start_usec); tor_trace(TR_SUBSYS(cc), TR_EV(flow_decide_xoff_sending), stream);