]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
temporary hack to solve bug 384, so i can get on with debugging
authorRoger Dingledine <arma@torproject.org>
Tue, 20 Mar 2007 02:10:18 +0000 (02:10 +0000)
committerRoger Dingledine <arma@torproject.org>
Tue, 20 Mar 2007 02:10:18 +0000 (02:10 +0000)
other stuff.

svn:r9880

src/or/routerlist.c

index 27398adc95ae59be0cc24caf844b060d62d08453..65b07480f5bfb8266793f814aef0160095f5cc2b 100644 (file)
@@ -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)