diff options
author | Roger Dingledine <arma@torproject.org> | 2006-04-10 08:40:16 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-04-10 08:40:16 +0000 |
commit | b190c451b8ec438ffe43943f3db03b24a2aa5809 (patch) | |
tree | 9e09f8ebfb59d057cd9ad5e81c554c36a9635b08 | |
parent | a9e7737c3ace43b9e686e7f301503dff97f16c35 (diff) | |
download | tor-b190c451b8ec438ffe43943f3db03b24a2aa5809.tar.gz tor-b190c451b8ec438ffe43943f3db03b24a2aa5809.zip |
and one more kick to consider all live network statuses for versionstor-0.1.1.18-rc
svn:r6359
-rw-r--r-- | src/or/routerlist.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 81d0272164..f1f2d6e7e5 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -2731,8 +2731,7 @@ routers_update_all_from_networkstatus(void) SMARTLIST_FOREACH(networkstatus_list, networkstatus_t *, ns, { version_status_t vs; - if (!ns->recommends_versions || - ns->received_on + SELF_OPINION_INTERVAL < now ) + if (!ns->recommends_versions) continue; vs = tor_version_is_obsolete( VERSION, is_server ? ns->server_versions : ns->client_versions); |