diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-15 14:14:11 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-15 14:14:11 -0400 |
commit | 1e4e9db8157e8691327fe9ee9de5df6fe9891040 (patch) | |
tree | 226289f2b748155beb81c0af86d6f66af3fb4184 /src/or/dirauth | |
parent | b8ae4111e38bc9cf6ac395b78601c150f710936f (diff) | |
download | tor-1e4e9db8157e8691327fe9ee9de5df6fe9891040.tar.gz tor-1e4e9db8157e8691327fe9ee9de5df6fe9891040.zip |
Extract authority_cert_t into its own header
Diffstat (limited to 'src/or/dirauth')
-rw-r--r-- | src/or/dirauth/dirvote.c | 1 | ||||
-rw-r--r-- | src/or/dirauth/shared_random.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/or/dirauth/dirvote.c b/src/or/dirauth/dirvote.c index 1f95b985c0..29134868c8 100644 --- a/src/or/dirauth/dirvote.c +++ b/src/or/dirauth/dirvote.c @@ -28,6 +28,7 @@ #include "dirauth/mode.h" #include "dirauth/shared_random_state.h" +#include "authority_cert_st.h" #include "dir_server_st.h" #include "document_signature_st.h" #include "networkstatus_st.h" diff --git a/src/or/dirauth/shared_random.c b/src/or/dirauth/shared_random.c index 137f695dbe..c042acda1b 100644 --- a/src/or/dirauth/shared_random.c +++ b/src/or/dirauth/shared_random.c @@ -105,6 +105,7 @@ #include "dirauth/dirvote.h" #include "dirauth/mode.h" +#include "authority_cert_st.h" #include "networkstatus_st.h" /* String prefix of shared random values in votes/consensuses. */ |