Use approx_time() instead of time(NULL) in some HS functions.

These were breaking our unittests.
This commit is contained in:
George Kadianakis 2018-06-14 15:38:14 +03:00 committed by Nick Mathewson
parent 05c362274b
commit 5fb6f656df
2 changed files with 2 additions and 2 deletions

View File

@ -433,7 +433,7 @@ service_intro_point_new(const extend_info_t *ei, unsigned int is_legacy)
if (BUG(intro_point_max_lifetime < intro_point_min_lifetime)) {
goto err;
}
ip->time_to_expire = time(NULL) +
ip->time_to_expire = approx_time() +
crypto_rand_int_range(intro_point_min_lifetime,intro_point_max_lifetime);
}

View File

@ -168,7 +168,7 @@ voting_schedule_get_next_valid_after_time(void)
done:
if (need_to_recalculate_voting_schedule) {
voting_schedule_recalculate_timing(get_options(), now);
voting_schedule_recalculate_timing(get_options(), approx_time());
voting_schedule.created_on_demand = 1;
}