mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-23 22:47:12 +01:00
stop picking unverified dir mirrors, ever.
it only leads to misery. svn:r3610
This commit is contained in:
parent
37ca621301
commit
236aa86ae7
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ router_pick_directory_server_impl(int requireothers, int fascistfirewall,
|
|||
sl = smartlist_create();
|
||||
for (i=0;i< smartlist_len(routerlist->routers); i++) {
|
||||
router = smartlist_get(routerlist->routers, i);
|
||||
if (!router->is_running || !router->dir_port)
|
||||
if (!router->is_running || !router->dir_port || !router->is_verified)
|
||||
continue;
|
||||
if (requireothers && router_is_me(router))
|
||||
continue;
|
||||
|
|
Loading…
Add table
Reference in a new issue