diff options
author | Roger Dingledine <arma@torproject.org> | 2007-03-20 02:10:18 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2007-03-20 02:10:18 +0000 |
commit | 4ab0b979b29a5069d2c54f286b0666e0628f6727 (patch) | |
tree | d7a4680766457cf0f963a0861834ad0802507a88 /src/or/routerlist.c | |
parent | 0724bc113ff6d0e6716caaad85a4b3e9deba6652 (diff) | |
download | tor-4ab0b979b29a5069d2c54f286b0666e0628f6727.tar.gz tor-4ab0b979b29a5069d2c54f286b0666e0628f6727.zip |
temporary hack to solve bug 384, so i can get on with debugging
other stuff.
svn:r9880
Diffstat (limited to 'src/or/routerlist.c')
-rw-r--r-- | src/or/routerlist.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 27398adc95..65b07480f5 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -4069,6 +4069,13 @@ update_router_descriptor_cache_downloads(time_t now) * we take this clause out. -RD */ continue; } + { /* XXX temporary hack so I can debug other stuff without bug 384 + * filling up my logs. */ + trusted_dir_server_t *ds; + ds = router_get_trusteddirserver_by_digest(ns->identity_digest); + if (ds && !ds->is_running) + continue; + } SMARTLIST_FOREACH(ns->entries, routerstatus_t * , rs, { if (!rs->need_to_mirror) |