mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 20:33:31 +01:00
the other half of the bugfix: tolerate a trusted dirserver claiming
dirport 0 in its descriptor. svn:r4576
This commit is contained in:
parent
97174b67c2
commit
545c2c6c87
@ -247,8 +247,8 @@ mark_all_trusteddirservers_up(void)
|
||||
{
|
||||
if (routerlist) {
|
||||
SMARTLIST_FOREACH(routerlist->routers, routerinfo_t *, router,
|
||||
if (router_digest_is_trusted_dir(router->identity_digest)) {
|
||||
tor_assert(router->dir_port > 0);
|
||||
if (router_digest_is_trusted_dir(router->identity_digest) &&
|
||||
router->dir_port > 0) {
|
||||
router->is_running = 1;
|
||||
router->status_set_at = time(NULL);
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user