From: Roger Dingledine Date: Tue, 20 Mar 2007 02:10:18 +0000 (+0000) Subject: temporary hack to solve bug 384, so i can get on with debugging X-Git-Tag: tor-0.2.0.1-alpha~323 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ab0b979b29a5069d2c54f286b0666e0628f6727;p=thirdparty%2Ftor.git temporary hack to solve bug 384, so i can get on with debugging other stuff. svn:r9880 --- 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)