summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorNeel Chauhan <neel@neelc.org>2019-07-19 20:50:25 -0400
committerNeel Chauhan <neel@neelc.org>2019-07-19 20:50:25 -0400
commit232aa8570d19c284a62b7b2a9924422dda15d36b (patch)
tree8ce6d93a83d437100ebefb1f09e0bcc10cc2d1c1 /src/core
parent5303dbe6249ed4b1e268f7a5c41ed6a638c4d0e3 (diff)
downloadtor-232aa8570d19c284a62b7b2a9924422dda15d36b.tar.gz
tor-232aa8570d19c284a62b7b2a9924422dda15d36b.zip
Space out first connection_edge_process_relay_cell() line in circuit_receive_relay_cell()
Diffstat (limited to 'src/core')
-rw-r--r--src/core/or/relay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/or/relay.c b/src/core/or/relay.c
index 9f90a09699..f61f11b087 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) "