Skip to content

Commit

Permalink
Merge branch 'bug30316_035' into bug30316_040
Browse files Browse the repository at this point in the history
Fixes conflicts and also moves bandwidth-file-digest.
  • Loading branch information
nmathewson committed Apr 29, 2019
2 parents 593d299 + 0ab4dc7 commit 821dd54
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
4 changes: 4 additions & 0 deletions changes/bug30316
Original file line number Diff line number Diff line change
@@ -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.
11 changes: 5 additions & 6 deletions src/feature/dirauth/dirvote.c
Original file line number Diff line number Diff line change
Expand Up @@ -348,11 +348,11 @@ format_networkstatus_vote(crypto_pk_t *private_signing_key,
"known-flags %s\n"
"flag-thresholds %s\n"
"params %s\n"
"%s" /* bandwidth file headers */
"%s" /* bandwidth file digest */
"dir-source %s %s %s %s %d %d\n"
"contact %s\n"
"%s" /* shared randomness information */
"%s" /* bandwidth file headers */
"%s" /* bandwidth file */
,
v3_ns->type == NS_TYPE_VOTE ? "vote" : "opinion",
methods,
Expand All @@ -365,14 +365,13 @@ format_networkstatus_vote(crypto_pk_t *private_signing_key,
flags,
flag_thresholds,
params,
bw_headers_line ? bw_headers_line : "",
bw_file_digest ? bw_file_digest: "",
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 : "",
bw_file_digest ? bw_file_digest: "");
shared_random_vote_str : "");

tor_free(params);
tor_free(flags);
Expand Down

0 comments on commit 821dd54

Please sign in to comment.