]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
r15809@catbus: nickm | 2007-10-15 19:44:13 -0400
authorNick Mathewson <nickm@torproject.org>
Mon, 15 Oct 2007 23:44:32 +0000 (23:44 +0000)
committerNick Mathewson <nickm@torproject.org>
Mon, 15 Oct 2007 23:44:32 +0000 (23:44 +0000)
 Do not call the more interesting parts of routers_update_all_from_networkstatus if there is no live networkstatus.

svn:r11958

src/or/networkstatus.c

index d980cc748ff1e28636c0bf7ff2fde3487264b4e9..672b1fbc5b1f6a9a0732e7b9a9544f26ef5e4d13 100644 (file)
@@ -1012,20 +1012,23 @@ routers_update_all_from_networkstatus(time_t now)
   routerlist_t *rl = router_get_routerlist();
   networkstatus_vote_t *consensus = networkstatus_get_live_consensus(now);
 
-  router_dir_info_changed();
+  router_dir_info_changed(); /*XXXX020 really? */
 
   if (networkstatus_v2_list_has_changed) {
     routerstatus_list_update_from_v2_networkstatus();
     networkstatus_v2_list_has_changed = 0;
   }
 
+  if (!consensus)
+    return;
+
   routers_update_status_from_consensus_networkstatus(rl->routers, 0);
   SMARTLIST_FOREACH(rl->routers, routerinfo_t *, ri,
                     ri->routerlist_index = ri_sl_idx);
   entry_guards_compute_status();
 
   me = router_get_my_routerinfo();
-  if (me && consensus && !have_warned_about_invalid_status) {
+  if (me && !have_warned_about_invalid_status) {
     routerstatus_t *rs = networkstatus_vote_find_entry(consensus,
                                         me->cache_info.identity_digest);
 
@@ -1042,7 +1045,7 @@ routers_update_all_from_networkstatus(time_t now)
     }
   }
 
-  if (consensus && !have_warned_about_old_version) {
+  if (!have_warned_about_old_version) {
     int is_server = server_mode(get_options());
     version_status_t status;
     const char *recommended = is_server ?