summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);