commit b5ce4f94c3456d81cbb340a4e20e657f5b393d99 Author: Nick Mathewson nickm@torproject.org Date: Tue Jan 15 16:33:53 2013 -0500
Forward-port fix for 7889 --- src/or/command.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/or/command.c b/src/or/command.c index ec97a78..6d68c5c 100644 --- a/src/or/command.c +++ b/src/or/command.c @@ -223,9 +223,9 @@ command_process_create_cell(cell_t *cell, channel_t *chan)
if (cell->circ_id == 0) { log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, - "Received a create cell (type %d) from %s:%d with zero circID; " - " ignoring.", (int)cell->command, conn->_base.address, - conn->_base.port); + "Received a create cell (type %d) from %s with zero circID; " + " ignoring.", (int)cell->command, + channel_get_actual_remote_descr(chan)); return; }
tor-commits@lists.torproject.org