diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-04-01 14:02:02 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-04-01 14:02:02 -0400 |
commit | 05fbbfe472657ca93bd473056e662850e01af6f1 (patch) | |
tree | b23f5bb40432d21ef0f6a816c93c62e94e4a470f /src/or/routerlist.c | |
parent | d366c3354f4d10d2a71e837e01d6722c40854b5b (diff) | |
parent | 05f7336624d6a47b3cf0fe827097cd526a130873 (diff) | |
download | tor-05fbbfe472657ca93bd473056e662850e01af6f1.tar.gz tor-05fbbfe472657ca93bd473056e662850e01af6f1.zip |
Merge remote-tracking branch 'public/remove_old_version_checks'
Diffstat (limited to 'src/or/routerlist.c')
-rw-r--r-- | src/or/routerlist.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 98c3bb1831..fd096799de 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -1498,9 +1498,6 @@ router_pick_directory_server_impl(dirinfo_type_t type, int flags, if ((type & EXTRAINFO_DIRINFO) && !router_supports_extrainfo(node->identity, is_trusted_extrainfo)) continue; - if ((type & MICRODESC_DIRINFO) && !is_trusted && - !node->rs->version_supports_microdesc_cache) - continue; if (for_guard && node->using_as_guard) continue; /* Don't make the same node a guard twice. */ if (try_excluding && |