summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2006-04-10 08:40:16 +0000
committerRoger Dingledine <arma@torproject.org>2006-04-10 08:40:16 +0000
commitb190c451b8ec438ffe43943f3db03b24a2aa5809 (patch)
tree9e09f8ebfb59d057cd9ad5e81c554c36a9635b08
parenta9e7737c3ace43b9e686e7f301503dff97f16c35 (diff)
downloadtor-0.1.1.18-rc.tar.gz
tor-0.1.1.18-rc.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.c3
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);