diff options
Diffstat (limited to 'src/or/dirvote.c')
-rw-r--r-- | src/or/dirvote.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/or/dirvote.c b/src/or/dirvote.c index a245b36e7a..da34ab1dcf 100644 --- a/src/or/dirvote.c +++ b/src/or/dirvote.c @@ -219,7 +219,8 @@ get_voter(const networkstatus_t *vote) return smartlist_get(vote->voters, 0); } -typedef struct { +/* DOCDOC dir_src_ent_t */ +typedef struct dir_src_ent_t { networkstatus_t *v; const char *digest; int is_legacy; @@ -235,6 +236,7 @@ _compare_votes_by_authority_id(const void **_a, const void **_b) get_voter(b)->identity_digest, DIGEST_LEN); } +/* DOCDOC _compare_dir_src_ents_by_authority_id */ static int _compare_dir_src_ents_by_authority_id(const void **_a, const void **_b) { |