]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Space out first connection_edge_process_relay_cell() line in circuit_receive_relay_cell()
authorNeel Chauhan <neel@neelc.org>
Sat, 20 Jul 2019 00:50:25 +0000 (20:50 -0400)
committerNeel Chauhan <neel@neelc.org>
Sat, 20 Jul 2019 00:50:25 +0000 (20:50 -0400)
src/core/or/relay.c

index 9f90a0969966e62f7df6fb29901bb1d8c39862e2..f61f11b087bbc233c36507bf02035618ff5d9c7c 100644 (file)
@@ -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) "