aboutsummaryrefslogtreecommitdiff
path: root/src/or/command.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2003-09-29 23:14:49 +0000
committerRoger Dingledine <arma@torproject.org>2003-09-29 23:14:49 +0000
commit3ed7aedc11d85bde5d4da3f7d1a6bdadc037ac75 (patch)
treecd6ce1b1bb3c0bdd92485ee4315eafcab549bbf6 /src/or/command.c
parent467d278b8b00740e876ae5ba9e0798ad702b5a67 (diff)
downloadtor-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.c2
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;
}