diff options
-rw-r--r-- | src/or/dirserv.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/or/dirserv.c b/src/or/dirserv.c index f73adf9e1..432b4364e 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -752,6 +752,10 @@ live_enough_for_v1_dir(routerinfo_t *ri, time_t now) time_t cutoff = now - ROUTER_MAX_AGE_TO_PUBLISH; if (ri->cache_info.published_on < cutoff) return 0; +#if 0 + if (!ri->is_running || !ri->is_valid) + return 0; +#endif return 1; } |