diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-01-15 16:33:53 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-01-15 16:33:53 -0500 |
commit | b5ce4f94c3456d81cbb340a4e20e657f5b393d99 (patch) | |
tree | 08aaa48ac991f48cbc00459532945f26b2651816 /src/or/command.c | |
parent | 938cb6a55e05751a30e50f744bc568b27812a344 (diff) | |
download | tor-b5ce4f94c3456d81cbb340a4e20e657f5b393d99.tar.gz tor-b5ce4f94c3456d81cbb340a4e20e657f5b393d99.zip |
Forward-port fix for 7889
Diffstat (limited to 'src/or/command.c')
-rw-r--r-- | 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 ec97a78bbc..6d68c5c159 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; } |