diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-09-12 14:11:44 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-09-26 10:56:53 -0700 |
commit | 3a3120819c8f600ef7d22ddf3f5476791c7e1d9b (patch) | |
tree | dcd3d5548104d560fcfec91c09ccfc6045dcc4fa /src/or/dirvote.c | |
parent | 78c07eeee1184feba25a554d9902fe22d9da64fd (diff) | |
download | tor-3a3120819c8f600ef7d22ddf3f5476791c7e1d9b.tar.gz tor-3a3120819c8f600ef7d22ddf3f5476791c7e1d9b.zip |
Rename compute_protover_vote to protover_compute_vote
Diffstat (limited to 'src/or/dirvote.c')
-rw-r--r-- | src/or/dirvote.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/dirvote.c b/src/or/dirvote.c index f606b07f7a..c65243cf09 100644 --- a/src/or/dirvote.c +++ b/src/or/dirvote.c @@ -1256,7 +1256,7 @@ compute_nth_protocol_set(int n, int n_voters, const smartlist_t *votes) smartlist_add(proto_votes, (void*)v); } SMARTLIST_FOREACH_END(ns); - char *protocols = compute_protover_vote(proto_votes, threshold); + char *protocols = protover_compute_vote(proto_votes, threshold); smartlist_free(proto_votes); char *result = NULL; |