diff options
author | David Goulet <dgoulet@torproject.org> | 2018-04-25 10:00:17 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2018-04-27 11:40:44 -0400 |
commit | 43bee06dd090b5e221a0622389e18a21c0d1e153 (patch) | |
tree | 4c82524b60a32247df0c6d580fbee18afea4e1b1 /src/or/dirauth | |
parent | 26817d9d2231d2580361ae9082db17250b454628 (diff) | |
download | tor-43bee06dd090b5e221a0622389e18a21c0d1e153.tar.gz tor-43bee06dd090b5e221a0622389e18a21c0d1e153.zip |
dirvote: Rename voter_get_sig_by_algorithm()
In order to follow the public namespace of dirvote.
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/dirauth')
-rw-r--r-- | src/or/dirauth/dirvote.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/dirauth/dirvote.c b/src/or/dirauth/dirvote.c index dc35c892e0..5af6d841f8 100644 --- a/src/or/dirauth/dirvote.c +++ b/src/or/dirauth/dirvote.c @@ -2490,7 +2490,7 @@ networkstatus_add_detached_signatures(networkstatus_t *target, continue; } - old_sig = voter_get_sig_by_algorithm(target_voter, sig->alg); + old_sig = dirvote_get_voter_sig_by_alg(target_voter, sig->alg); /* If the target already has a good signature from this voter, then skip * this one. */ |