diff options
author | Roger Dingledine <arma@torproject.org> | 2005-12-04 23:06:48 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-12-04 23:06:48 +0000 |
commit | 40cbe550f3713e08b1275ce2703dcf3e4882e5b6 (patch) | |
tree | 0a0a2fb949d530da8640950bcca57939e0a9c955 /src/or | |
parent | bb8dc691ebc65b2412c3e332b7eae45b48c2a6df (diff) | |
download | tor-40cbe550f3713e08b1275ce2703dcf3e4882e5b6.tar tor-40cbe550f3713e08b1275ce2703dcf3e4882e5b6.tar.gz |
fix a log message to be mildly more helpful
svn:r5498
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/connection_edge.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index 94113f52f..9de68abc4 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -346,7 +346,7 @@ connection_ap_expire_beginning(void) } if (circ->purpose == CIRCUIT_PURPOSE_C_REND_JOINED) { if (now - conn->timestamp_lastread > 45) { - notice(LD_REND,"Rend stream is %d seconds late. Giving up on address '%s'.", + notice(LD_REND,"Rend stream is %d seconds late. Giving up on address '%s.onion'.", (int)(now - conn->timestamp_lastread), safe_str(conn->socks_request->address)); connection_edge_end(conn, END_STREAM_REASON_TIMEOUT, conn->cpath_layer); |