mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
r15589@catbus: nickm | 2007-10-09 15:08:00 -0400
Fix dumb typo in vote retrieval: we want to check the pending votes to see what we are missing; not the previous period. svn:r11811
This commit is contained in:
+1
-1
@@ -1235,7 +1235,7 @@ dirvote_fetch_missing_votes(void)
|
||||
{
|
||||
if (!(ds->type & V3_AUTHORITY))
|
||||
continue;
|
||||
if (!dirvote_get_vote(ds->v3_identity_digest, 1, 1, 0)) {
|
||||
if (!dirvote_get_vote(ds->v3_identity_digest, 1, 0, 1)) {
|
||||
char *cp = tor_malloc(HEX_DIGEST_LEN+1);
|
||||
base16_encode(cp, HEX_DIGEST_LEN+1, ds->v3_identity_digest,
|
||||
DIGEST_LEN);
|
||||
|
||||
Reference in New Issue
Block a user