mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 05:33:47 +01:00
r15847@catbus: nickm | 2007-10-16 10:15:07 -0400
Fix the simpler bit of bug 529: update routerinfo_t.is_named from the consensus. svn:r11983
This commit is contained in:
parent
f3c7eeb4a0
commit
9ca2625833
@ -1173,6 +1173,7 @@ routers_update_status_from_consensus_networkstatus(smartlist_t *routers,
|
||||
}
|
||||
if (r>0) {
|
||||
/* We have no routerstatus for this router. Skip it. */
|
||||
router->is_named = 0;
|
||||
continue;
|
||||
}
|
||||
tor_assert(r==0);
|
||||
@ -1191,6 +1192,10 @@ routers_update_status_from_consensus_networkstatus(smartlist_t *routers,
|
||||
router->is_possible_guard = rs->is_possible_guard;
|
||||
router->is_exit = rs->is_exit;
|
||||
router->is_bad_exit = rs->is_bad_exit;
|
||||
if (rs->is_named && !strcasecmp(router->nickname, rs->nickname))
|
||||
router->is_named = 1;
|
||||
else
|
||||
router->is_named = 0;
|
||||
}
|
||||
if (router->is_running && ds) {
|
||||
download_status_reset(&ds->v2_ns_dl_status);
|
||||
|
Loading…
Reference in New Issue
Block a user