diff options
author | Roger Dingledine <arma@torproject.org> | 2003-09-29 23:14:49 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2003-09-29 23:14:49 +0000 |
commit | 3ed7aedc11d85bde5d4da3f7d1a6bdadc037ac75 (patch) | |
tree | cd6ce1b1bb3c0bdd92485ee4315eafcab549bbf6 /src/or/command.c | |
parent | 467d278b8b00740e876ae5ba9e0798ad702b5a67 (diff) | |
download | tor-3ed7aedc11d85bde5d4da3f7d1a6bdadc037ac75.tar tor-3ed7aedc11d85bde5d4da3f7d1a6bdadc037ac75.tar.gz |
bugfixes and features: closer to making dirserv work
fix a variety of seg faults
don't try to list OPs in running-routers
write cached-directory to disk when rebuilding the dir
on boot, dirservers load approved-routers file
on boot, dirservers load cached directory file
svn:r508
Diffstat (limited to 'src/or/command.c')
-rw-r--r-- | src/or/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/command.c b/src/or/command.c index e3943cc79..157da99f6 100644 --- a/src/or/command.c +++ b/src/or/command.c @@ -118,7 +118,7 @@ static void command_process_created_cell(cell_t *cell, connection_t *conn) { circ = circuit_get_by_aci_conn(cell->aci, conn); if(!circ) { - log_fn(LOG_WARNING,"received CREATED cell (aci %d) for unknown circ. Dropping.", cell->aci); + log_fn(LOG_INFO,"(aci %d) unknown circ (probably got a destroy earlier). Dropping.", cell->aci); return; } |