From: Roger Dingledine Date: Fri, 9 Jun 2006 02:45:39 +0000 (+0000) Subject: fix a bootstrapping check we ignored that prevents us from running X-Git-Tag: tor-0.1.1.23~252 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a91be49402c0ace36ab5eca22f55580f9895671d;p=thirdparty%2Ftor.git fix a bootstrapping check we ignored that prevents us from running with only one dir authority. svn:r6570 --- diff --git a/src/or/routerlist.c b/src/or/routerlist.c index c0e138823b..bbed15462c 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -3442,10 +3442,8 @@ update_router_descriptor_client_downloads(time_t now) return; } - /* XXX here's another magic 2 that probably should be replaced - * by <= smartlist_len(trusted_dir_servers)/2 - * or by a function returning same. -- weasel */ - if (networkstatus_list && smartlist_len(networkstatus_list) < 2) { + if (networkstatus_list && smartlist_len(networkstatus_list) <= + smartlist_len(trusted_dir_servers)/2) { log_info(LD_DIR, "Not enough networkstatus documents to launch requests."); }