diff options
author | Peter Palfrader <peter@palfrader.org> | 2008-08-14 23:09:48 +0000 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2008-08-14 23:09:48 +0000 |
commit | 521f8c791f0e4701a6ecf70500bfba9232745d94 (patch) | |
tree | 3d3966c564585137e50679465602bc4fd8f8fe88 /src/or/dirvote.c | |
parent | 8cc3d6e22db28948ceb63f74b8f7d953553ab535 (diff) | |
download | tor-521f8c791f0e4701a6ecf70500bfba9232745d94.tar.gz tor-521f8c791f0e4701a6ecf70500bfba9232745d94.zip |
spaceman
svn:r16555
Diffstat (limited to 'src/or/dirvote.c')
-rw-r--r-- | src/or/dirvote.c | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/or/dirvote.c b/src/or/dirvote.c index 88ffa62108..52336988fb 100644 --- a/src/or/dirvote.c +++ b/src/or/dirvote.c @@ -959,9 +959,13 @@ networkstatus_compute_consensus(smartlist_t *votes, SMARTLIST_FOREACH(matching_descs, vote_routerstatus_t *, vsr, { /* Check if the vote where this status comes from had the * proper descriptor */ - tor_assert(!memcmp(rs_out.identity_digest, vsr->status.identity_digest, DIGEST_LEN)); + tor_assert(!memcmp(rs_out.identity_digest, + vsr->status.identity_digest, + DIGEST_LEN)); if (vsr->status.has_exitsummary && - !memcmp(rs_out.descriptor_digest, vsr->status.descriptor_digest, DIGEST_LEN)) { + !memcmp(rs_out.descriptor_digest, + vsr->status.descriptor_digest, + DIGEST_LEN)) { tor_assert(vsr->status.exitsummary); smartlist_add(exitsummaries, vsr->status.exitsummary); if (!chosen_exitsummary) { @@ -1012,7 +1016,8 @@ networkstatus_compute_consensus(smartlist_t *votes, if (chosen_exitsummary) { rs_out.has_exitsummary = 1; - rs_out.exitsummary = (char *)chosen_exitsummary; /* yea, discards the const */ + /* yea, discards the const */ + rs_out.exitsummary = (char *)chosen_exitsummary; } } @@ -1031,7 +1036,8 @@ networkstatus_compute_consensus(smartlist_t *votes, smartlist_add(chunks, tor_strdup("\n")); /* Now the weight line. */ if (rs_out.has_bandwidth) { - int r = tor_snprintf(buf, sizeof(buf), "w Bandwidth=%d\n", rs_out.bandwidth); + int r = tor_snprintf(buf, sizeof(buf), + "w Bandwidth=%d\n", rs_out.bandwidth); if (r<0) { log_warn(LD_BUG, "Not enough space in buffer for weight line."); *buf = '\0'; |