diff options
author | teor (Tim Wilson-Brown) <teor2345@gmail.com> | 2016-05-04 16:38:27 +1000 |
---|---|---|
committer | teor (Tim Wilson-Brown) <teor2345@gmail.com> | 2016-05-11 13:30:08 -0400 |
commit | 730cfeb6bd3d8060e44026469ec6d75695c00179 (patch) | |
tree | b1859cde9c73642a7dffca7b304a80f78fcc8b93 /src/or/dirvote.c | |
parent | 797ece042d9666beae3ffc801b148e8bebcd88c0 (diff) | |
download | tor-730cfeb6bd3d8060e44026469ec6d75695c00179.tar.gz tor-730cfeb6bd3d8060e44026469ec6d75695c00179.zip |
Fetch certificates from the same directory as the consensus
Resolves ticket 18963; fix on #4483 in 0.2.8.1-alpha.
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 9854af7d7f..f28bff92db 100644 --- a/src/or/dirvote.c +++ b/src/or/dirvote.c @@ -3373,7 +3373,7 @@ dirvote_publish_consensus(void) continue; } - if (networkstatus_set_current_consensus(pending->body, name, 0)) + if (networkstatus_set_current_consensus(pending->body, name, 0, NULL)) log_warn(LD_DIR, "Error publishing %s consensus", name); else log_notice(LD_DIR, "Published %s consensus", name); |