aboutsummaryrefslogtreecommitdiff
path: root/src/or/circuit.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2003-12-17 09:42:28 +0000
committerRoger Dingledine <arma@torproject.org>2003-12-17 09:42:28 +0000
commit5ecd6b6bada6a7cd9fe7d5f82ae72bdc9577c97d (patch)
treea36d4e0a0a39a522ed682646924c0be0e775439b /src/or/circuit.c
parent4a1e05de51859e258093ff82d93609921d0a4dad (diff)
downloadtor-5ecd6b6bada6a7cd9fe7d5f82ae72bdc9577c97d.tar
tor-5ecd6b6bada6a7cd9fe7d5f82ae72bdc9577c97d.tar.gz
make fetch_from_buf_http malloc its strings rather
than use fixed-size strings reorganize directory_handle_command so it'll be easier to do more with our directory servers svn:r950
Diffstat (limited to 'src/or/circuit.c')
-rw-r--r--src/or/circuit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuit.c b/src/or/circuit.c
index a1705a768..e9bf1db18 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;