Browse Source

Call routers_update_all_from_networkstatus() from router_reload_consensus_networkstatus() so that we warn about old versions when we startup Tor, not when we fetch the next consensus document

svn:r12038
Peter Palfrader 17 years ago
parent
commit
829801c476
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/or/networkstatus.c

+ 1 - 0
src/or/networkstatus.c

@@ -177,6 +177,7 @@ router_reload_consensus_networkstatus(void)
     tor_free(s);
   }
   tor_free(filename);
+  routers_update_all_from_networkstatus(time(NULL));
 
   return 0;
 }