diff options
Diffstat (limited to 'src/or/circuit.c')
-rw-r--r-- | src/or/circuit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuit.c b/src/or/circuit.c index a1705a7684..e9bf1db18f 100644 --- a/src/or/circuit.c +++ b/src/or/circuit.c @@ -369,7 +369,7 @@ int circuit_deliver_relay_cell(cell_t *cell, circuit_t *circ, } if(cell_direction == CELL_DIRECTION_IN) { if(relay_check_digest(layer_hint->b_digest, cell) < 0) { - log_fn(LOG_WARN,"outgoing cell failed integrity check. Closing circ."); + log_fn(LOG_WARN,"incoming cell failed integrity check. Closing circ."); return -1; } ++stats_n_relay_cells_delivered; |