diff options
author | David Goulet <dgoulet@torproject.org> | 2017-09-25 16:01:12 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2017-09-25 16:01:12 -0400 |
commit | de54e143123ff37e2e1db09391ca32096b059b67 (patch) | |
tree | 85b1622b716d35c2fc5b947e9eeabe3df0bed0d6 /src/or | |
parent | 90e8d1f58fb77eb15c59c1bd846aabe1555b64f2 (diff) | |
download | tor-de54e143123ff37e2e1db09391ca32096b059b67.tar.gz tor-de54e143123ff37e2e1db09391ca32096b059b67.zip |
circuit: Closing reason are signed values
Part of #23645
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/circuitlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c index 9577573ec2..7fbf6e4488 100644 --- a/src/or/circuitlist.c +++ b/src/or/circuitlist.c @@ -1919,7 +1919,7 @@ circuit_mark_for_close_, (circuit_t *circ, int reason, int line, smartlist_add(circuits_pending_close, circ); log_info(LD_GENERAL, "Circuit %u (id: %" PRIu32 ") marked for close at " - "%s:%d (orig reason: %u, new reason: %u)", + "%s:%d (orig reason: %d, new reason: %d)", circ->n_circ_id, CIRCUIT_IS_ORIGIN(circ) ? TO_ORIGIN_CIRCUIT(circ)->global_identifier : 0, |