diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-02-24 11:06:44 -0500 |
---|---|---|
committer | George Kadianakis <desnacked@riseup.net> | 2020-03-03 14:35:01 +0200 |
commit | 9fb18756df3f76545f8f591881a95e1e09e735a0 (patch) | |
tree | ec3fc17cafd8df950a7d5704526fe3e428bd37ed /src/feature/dirauth/shared_random_state.c | |
parent | 7777f1df495c0f6f778a4d2378d5ddb89f985bda (diff) | |
download | tor-9fb18756df3f76545f8f591881a95e1e09e735a0.tar.gz tor-9fb18756df3f76545f8f591881a95e1e09e735a0.zip |
Stop using all dirauth-only options in shared_random_client.c
This is not as clean a patch as I would like: see the comment on
ASSUME_AUTHORITY_SCHEDULING. This issue here is that the unit tests
sometimes assume that we are going to be looking at the dirauth
options and behaving like a dirauth, but without setting the options
to turn is into one.
This isn't an issue for actually running Tor, as far as I can tell
with chutney.
Diffstat (limited to 'src/feature/dirauth/shared_random_state.c')
-rw-r--r-- | src/feature/dirauth/shared_random_state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature/dirauth/shared_random_state.c b/src/feature/dirauth/shared_random_state.c index 305c2cc94c..c15f8c9937 100644 --- a/src/feature/dirauth/shared_random_state.c +++ b/src/feature/dirauth/shared_random_state.c @@ -139,7 +139,7 @@ get_state_valid_until_time(time_t now) voting_interval = get_voting_interval(); /* Find the time the current round started. */ - beginning_of_current_round = get_start_time_of_current_round(); + beginning_of_current_round = dirauth_sched_get_cur_valid_after_time(); /* Find how many rounds are left till the end of the protocol run */ current_round = (now / voting_interval) % total_rounds; |