diff options
author | Roger Dingledine <arma@torproject.org> | 2008-02-06 12:46:46 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2008-02-06 12:46:46 +0000 |
commit | f76cdc1a611fdbc134cabd1e0d81e7d9d8fd3648 (patch) | |
tree | fd3b27550508c002a7a663e2d6f6e3f3a7188458 /src/or/relay.c | |
parent | c054f90f029915679db24d61559a7bdde1a9414b (diff) | |
download | tor-f76cdc1a611fdbc134cabd1e0d81e7d9d8fd3648.tar.gz tor-f76cdc1a611fdbc134cabd1e0d81e7d9d8fd3648.zip |
misc small fixes
svn:r13403
Diffstat (limited to 'src/or/relay.c')
-rw-r--r-- | src/or/relay.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/relay.c b/src/or/relay.c index 006c22fe14..e45376539a 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -1375,7 +1375,7 @@ connection_edge_consider_sending_sendme(edge_connection_t *conn) conn->deliver_window += STREAMWINDOW_INCREMENT; if (connection_edge_send_command(conn, RELAY_COMMAND_SENDME, NULL, 0) < 0) { - log_warn(LD_APP,"connection_edge_send_command failed. Returning."); + log_warn(LD_APP,"connection_edge_send_command failed. Skipping."); return; /* the circuit's closed, don't continue */ } } |