diff options
Diffstat (limited to 'src/or/main.c')
-rw-r--r-- | src/or/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c index 22b006a3c8..3fb7de6f6c 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -1623,7 +1623,8 @@ run_scheduled_events(time_t now) time_to.check_for_correct_dns < now && ! router_my_exit_policy_is_reject_star()) { if (!time_to.check_for_correct_dns) { - time_to.check_for_correct_dns = crypto_rand_time_range(now, now + 120) + 60; + time_to.check_for_correct_dns = + crypto_rand_time_range(now + 60, now + 180); } else { dns_launch_correctness_checks(); time_to.check_for_correct_dns = now + 12*3600 + |