diff options
author | Mike Perry <mikeperry-git@torproject.org> | 2019-08-08 12:24:31 -0500 |
---|---|---|
committer | Mike Perry <mikeperry-git@torproject.org> | 2019-08-12 13:46:32 -0500 |
commit | f6bc9d7c7eff9d50e5499007ea3a742b259e6ff9 (patch) | |
tree | dafe00b0cf31f052a4e8a9ab7fb49afb6e7e80bd /src/core | |
parent | ccd16caeacd3cec84f6a2c419bfc9a4500506d55 (diff) | |
download | tor-f6bc9d7c7eff9d50e5499007ea3a742b259e6ff9.tar.gz tor-f6bc9d7c7eff9d50e5499007ea3a742b259e6ff9.zip |
Bug 30992: Demote logline of wronghop padding to protocol warn.
This can happen, it's not great, but it's not the worst thing in the world
either. Deferring full fix for 0.4.2/later.
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/or/circuitpadding.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/or/circuitpadding.c b/src/core/or/circuitpadding.c index 392dc53331..cdebda33f6 100644 --- a/src/core/or/circuitpadding.c +++ b/src/core/or/circuitpadding.c @@ -2907,7 +2907,7 @@ circpad_handle_padding_negotiated(circuit_t *circ, cell_t *cell, /* Verify this came from the expected hop */ if (!circpad_padding_is_from_expected_hop(circ, layer_hint)) { - log_fn(LOG_WARN, LD_CIRC, + log_fn(LOG_PROTOCOL_WARN, LD_CIRC, "Padding negotiated cell from wrong hop on circuit %u", TO_ORIGIN_CIRCUIT(circ)->global_identifier); return -1; |