diff options
author | Roger Dingledine <arma@torproject.org> | 2003-04-20 21:56:44 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2003-04-20 21:56:44 +0000 |
commit | 59e70bcae695ac40344ae4e5e5bd9de44e1ba8ce (patch) | |
tree | f411b1c75cc9e9c36c247e39e1de8a28e7c6641e /src/or/command.c | |
parent | f54186aa916326ad097c32fa02c4e85d6697fc39 (diff) | |
download | tor-59e70bcae695ac40344ae4e5e5bd9de44e1ba8ce.tar.gz tor-59e70bcae695ac40344ae4e5e5bd9de44e1ba8ce.zip |
bugfix: a circ can't be youngest if it's still connecting to the first hop
svn:r255
Diffstat (limited to 'src/or/command.c')
-rw-r--r-- | src/or/command.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/or/command.c b/src/or/command.c index 00a079e00d..d41ca17f72 100644 --- a/src/or/command.c +++ b/src/or/command.c @@ -258,7 +258,6 @@ void command_process_data_cell(cell_t *cell, connection_t *conn) { void command_process_destroy_cell(cell_t *cell, connection_t *conn) { circuit_t *circ; - connection_t *tmpconn; circ = circuit_get_by_aci_conn(cell->aci, conn); |