[tor-commits] [tor/master] Space out first connection_edge_process_relay_cell() line in circuit_receive_relay_cell()

dgoulet at torproject.org dgoulet at torproject.org
Thu Aug 8 16:33:27 UTC 2019


commit 232aa8570d19c284a62b7b2a9924422dda15d36b
Author: Neel Chauhan <neel at neelc.org>
Date:   Fri Jul 19 20:50:25 2019 -0400

    Space out first connection_edge_process_relay_cell() line in circuit_receive_relay_cell()
---
 src/core/or/relay.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/core/or/relay.c b/src/core/or/relay.c
index 9f90a0969..f61f11b08 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) "





More information about the tor-commits mailing list