diff options
author | David Goulet <dgoulet@torproject.org> | 2019-08-08 12:30:23 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2019-08-08 12:30:23 -0400 |
commit | b47adcbcabf8b07ffb19b0cfeb02996b07104ccf (patch) | |
tree | 0617dc6c9decc476cf173b287455a3e6ef539c1f /src/core | |
parent | 0312da75a33c6f545f32ca682afa0dfaf9e31598 (diff) | |
parent | 232aa8570d19c284a62b7b2a9924422dda15d36b (diff) | |
download | tor-b47adcbcabf8b07ffb19b0cfeb02996b07104ccf.tar.gz tor-b47adcbcabf8b07ffb19b0cfeb02996b07104ccf.zip |
Merge branch 'tor-github/pr/1183'
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/or/relay.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/or/relay.c b/src/core/or/relay.c index 98d5b416f1..d66caf3ad0 100644 --- a/src/core/or/relay.c +++ b/src/core/or/relay.c @@ -265,7 +265,7 @@ circuit_receive_relay_cell(cell_t *cell, circuit_t *circ, if (cell_direction == CELL_DIRECTION_OUT) { ++stats_n_relay_cells_delivered; log_debug(LD_OR,"Sending away from origin."); - if ((reason=connection_edge_process_relay_cell(cell, circ, conn, NULL)) + if ((reason = connection_edge_process_relay_cell(cell, circ, conn, NULL)) < 0) { log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, "connection_edge_process_relay_cell (away from origin) " |