From: Roger Dingledine Date: Tue, 6 Jan 2009 19:21:47 +0000 (+0000) Subject: clarify which relay gave us the good netinfo cell X-Git-Tag: tor-0.2.1.10-alpha~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4f27e73aaa643a1f68adac9168c3e3ad29c204c0;p=thirdparty%2Ftor.git clarify which relay gave us the good netinfo cell svn:r17973 --- diff --git a/src/or/command.c b/src/or/command.c index 96e18395c0..4dcdc136bb 100644 --- a/src/or/command.c +++ b/src/or/command.c @@ -624,9 +624,10 @@ command_process_netinfo_cell(cell_t *cell, or_connection_t *conn) if (connection_or_set_state_open(conn)<0) connection_mark_for_close(TO_CONN(conn)); else - log_info(LD_OR, "Got good NETINFO cell from %s; OR connection is now " + log_info(LD_OR, "Got good NETINFO cell from %s:%d; OR connection is now " "open, using protocol version %d", - safe_str(conn->_base.address), (int)conn->link_proto); + safe_str(conn->_base.address), conn->_base.port, + (int)conn->link_proto); assert_connection_ok(TO_CONN(conn),time(NULL)); }