]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Remove a duplicate call to update_microdesc_downloads()
authorGeorge Kadianakis <desnacked@riseup.net>
Wed, 25 Oct 2017 16:18:38 +0000 (19:18 +0300)
committerGeorge Kadianakis <desnacked@riseup.net>
Fri, 1 Dec 2017 12:06:32 +0000 (14:06 +0200)
This call happens before we update our entry guards, so it needs to be
removed for the fix to #23862 to work.

src/or/directory.c

index 9494cf02baaf82ec1f222ad2fd5d7a7391ea647d..f54bf176ce5c46711404394644135f8ca2c278b7 100644 (file)
@@ -2592,11 +2592,11 @@ handle_response_fetch_consensus(dir_connection_t *conn,
   /* If we launched other fetches for this consensus, cancel them. */
   connection_dir_close_consensus_fetches(conn, flavname);
 
-  /* launches router downloads as needed */
+  /* update the list of routers and directory guards */
   routers_update_all_from_networkstatus(now, 3);
   update_microdescs_from_networkstatus(now);
-  update_microdesc_downloads(now);
   directory_info_has_arrived(now, 0, 0);
+
   if (authdir_mode_v3(get_options())) {
     sr_act_post_consensus(
                      networkstatus_get_latest_consensus_by_flavor(FLAV_NS));