tor

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

commit 83a11f8a767f55e1f2cc6b4632e0fdec6f89f945
parent 399025dc5f433711a48c0d3b7bdfc33c980b5c23
Author: Guinness <guinness@crans.org>
Date:   Thu,  9 Sep 2021 13:59:33 +0200

Fix the line length in the patch

Diffstat:
Msrc/core/or/channel.c | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/core/or/channel.c b/src/core/or/channel.c @@ -2643,7 +2643,8 @@ channel_dump_statistics, (channel_t *chan, int severity)) } if (chan->timestamp_recv == 0) { tor_log(severity, LD_GENERAL, - " * Channel %"PRIu64 " never received a cell", (chan->global_identifier)); + " * Channel %"PRIu64 " never received a cell", + (chan->global_identifier)); } else { tor_log(severity, LD_GENERAL, " * Channel %"PRIu64 " last received a cell " @@ -2654,7 +2655,8 @@ channel_dump_statistics, (channel_t *chan, int severity)) } if (chan->timestamp_xmit == 0) { tor_log(severity, LD_GENERAL, - " * Channel %"PRIu64 " never transmitted a cell",(chan->global_identifier)); + " * Channel %"PRIu64 " never transmitted a cell", + (chan->global_identifier)); } else { tor_log(severity, LD_GENERAL, " * Channel %"PRIu64 " last transmitted a cell "