diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-01-07 19:15:34 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-01-07 19:15:34 +0000 |
commit | 177d5102d5766827649f889280f4c6c15335bc36 (patch) | |
tree | d493cfbef6bb59c9ec6b48097f014cca056f9e75 /src/or/dirvote.c | |
parent | a62ab48d30bc26ba761752269d0129fe159d477f (diff) | |
download | tor-177d5102d5766827649f889280f4c6c15335bc36.tar.gz tor-177d5102d5766827649f889280f4c6c15335bc36.zip |
r17503@catbus: nickm | 2008-01-07 14:15:30 -0500
Change set_current_consensus interface to take a flags variable. Do not try to fetch certificates until after we have tried loading the fallback consensus. Should fix bug 583.
svn:r13058
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 7201af804a..7a8f1adcb5 100644 --- a/src/or/dirvote.c +++ b/src/or/dirvote.c @@ -1850,7 +1850,7 @@ dirvote_publish_consensus(void) return -1; } - if (networkstatus_set_current_consensus(pending_consensus_body, 0, 0)) + if (networkstatus_set_current_consensus(pending_consensus_body, 0)) log_warn(LD_DIR, "Error publishing consensus"); else log_notice(LD_DIR, "Consensus published."); |