diff options
author | teor <teor@torproject.org> | 2019-08-12 09:45:32 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2019-08-12 09:45:32 +1000 |
commit | 8ea0903222610b75e8b0c58297148267a299af31 (patch) | |
tree | 3c15600cba8b0ed521d4a3b71d8b1118f24ed6f0 | |
parent | 6ed56ee4eaf679d4352d034af5951d36fc9a6f8e (diff) | |
parent | 0ab4dc7ef7c6468c1d0d87a7cbc834217214f16b (diff) | |
download | tor-8ea0903222610b75e8b0c58297148267a299af31.tar.gz tor-8ea0903222610b75e8b0c58297148267a299af31.zip |
Merge remote-tracking branch 'tor-github/pr/987' into maint-0.3.5
-rw-r--r-- | changes/bug30316 | 4 | ||||
-rw-r--r-- | src/feature/dirauth/dirvote.c | 7 |
2 files changed, 7 insertions, 4 deletions
diff --git a/changes/bug30316 b/changes/bug30316 new file mode 100644 index 0000000000..3e396318ad --- /dev/null +++ b/changes/bug30316 @@ -0,0 +1,4 @@ + o Minor bugfixes (directory authority): + - Move the "bandwidth-file-headers" line in directory authority votes + so that it conforms to dir-spec.txt. Fixes bug 30316; bugfix on + 0.3.5.1-alpha. diff --git a/src/feature/dirauth/dirvote.c b/src/feature/dirauth/dirvote.c index 5e426b0f86..af8b3dc207 100644 --- a/src/feature/dirauth/dirvote.c +++ b/src/feature/dirauth/dirvote.c @@ -322,10 +322,10 @@ format_networkstatus_vote(crypto_pk_t *private_signing_key, "known-flags %s\n" "flag-thresholds %s\n" "params %s\n" + "%s" /* bandwidth file headers */ "dir-source %s %s %s %s %d %d\n" "contact %s\n" "%s" /* shared randomness information */ - "%s" /* bandwidth file headers */ , v3_ns->type == NS_TYPE_VOTE ? "vote" : "opinion", methods, @@ -338,13 +338,12 @@ format_networkstatus_vote(crypto_pk_t *private_signing_key, flags, flag_thresholds, params, + bw_headers_line ? bw_headers_line : "", voter->nickname, fingerprint, voter->address, fmt_addr32(addr), voter->dir_port, voter->or_port, voter->contact, shared_random_vote_str ? - shared_random_vote_str : "", - bw_headers_line ? - bw_headers_line : ""); + shared_random_vote_str : ""); tor_free(params); tor_free(flags); |