diff options
author | David Goulet <dgoulet@torproject.org> | 2018-05-01 11:10:58 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2018-05-01 11:43:23 -0400 |
commit | 711ff6cdf79c32921f587d389b6ac25630a39d80 (patch) | |
tree | b1f5b99c7a88fb4acca993b62463dcc700b81076 /src/or/dirauth | |
parent | 6452fe78c2c461f5534d1f03a799fc5f11073b5f (diff) | |
download | tor-711ff6cdf79c32921f587d389b6ac25630a39d80.tar.gz tor-711ff6cdf79c32921f587d389b6ac25630a39d80.zip |
Rename dirvote_common.{c|h} to voting_schedule.{c|h}
No code behavior change.
Part of #25988
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/dirauth')
-rw-r--r-- | src/or/dirauth/dirvote.c | 2 | ||||
-rw-r--r-- | src/or/dirauth/shared_random.c | 2 | ||||
-rw-r--r-- | src/or/dirauth/shared_random_state.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/or/dirauth/dirvote.c b/src/or/dirauth/dirvote.c index 11c94bb6a6..1d81244137 100644 --- a/src/or/dirauth/dirvote.c +++ b/src/or/dirauth/dirvote.c @@ -10,7 +10,6 @@ #include "directory.h" #include "dirserv.h" #include "dirvote.h" -#include "dirvote_common.h" #include "microdesc.h" #include "networkstatus.h" #include "nodelist.h" @@ -25,6 +24,7 @@ #include "entrynodes.h" /* needed for guardfraction methods */ #include "torcert.h" #include "shared_random_state.h" +#include "voting_schedule.h" /** * \file dirvote.c diff --git a/src/or/dirauth/shared_random.c b/src/or/dirauth/shared_random.c index 7e49204159..fcf134aa42 100644 --- a/src/or/dirauth/shared_random.c +++ b/src/or/dirauth/shared_random.c @@ -91,7 +91,6 @@ #include "shared_random.h" #include "config.h" #include "confparse.h" -#include "dirvote_common.h" #include "networkstatus.h" #include "routerkeys.h" #include "router.h" @@ -99,6 +98,7 @@ #include "shared_random_state.h" #include "shared_random_common.h" #include "util.h" +#include "voting_schedule.h" #include "dirauth/dirvote.h" diff --git a/src/or/dirauth/shared_random_state.c b/src/or/dirauth/shared_random_state.c index ac8fb5c151..6b915abcf5 100644 --- a/src/or/dirauth/shared_random_state.c +++ b/src/or/dirauth/shared_random_state.c @@ -14,7 +14,7 @@ #include "shared_random.h" #include "config.h" #include "confparse.h" -#include "dirvote_common.h" +#include "voting_schedule.h" #include "networkstatus.h" #include "router.h" #include "shared_random_state.h" |