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:
Nick Mathewson 2007-10-16 14:25:13 +00:00
parent f3c7eeb4a0
commit 9ca2625833

View File

@ -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);