Browse Source

Actually, do not use conditional consensus downloads until the authorities have upgraded

svn:r14453
Peter Palfrader 17 years ago
parent
commit
c3c7e7114e
1 changed files with 5 additions and 0 deletions
  1. 5 0
      src/or/routerlist.c

+ 5 - 0
src/or/routerlist.c

@@ -3512,7 +3512,12 @@ add_trusted_dir_server(const char *nickname, const char *address,
 
   if (ent->or_port)
     ent->fake_status.version_supports_begindir = 1;
+/* XX021 - wait until authorities are upgraded */
+#if 0
   ent->fake_status.version_supports_conditional_consensus = 1;
+#else
+  ent->fake_status.version_supports_conditional_consensus = 0;
+#endif
 
   smartlist_add(trusted_dir_servers, ent);
   router_dir_info_changed();