diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-05-15 20:12:01 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-05-15 20:12:01 -0400 |
commit | bc44393eb59a1d303314b4b646b4d815f4eadc22 (patch) | |
tree | 06de3a0c48451915abafb85cce3a8123c7773522 /src/or/dirvote.c | |
parent | 4c3853aca8708ecf2d6eb4e2d8fcf8ef5fd68611 (diff) | |
download | tor-bc44393eb59a1d303314b4b646b4d815f4eadc22.tar.gz tor-bc44393eb59a1d303314b4b646b4d815f4eadc22.zip |
Fixup whitespace issues from 3122 commit
Diffstat (limited to 'src/or/dirvote.c')
-rw-r--r-- | src/or/dirvote.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/dirvote.c b/src/or/dirvote.c index 517dac5074..96e3df5cec 100644 --- a/src/or/dirvote.c +++ b/src/or/dirvote.c @@ -2213,7 +2213,8 @@ networkstatus_add_detached_signatures(networkstatus_t *target, } for (alg = DIGEST_SHA1; alg < N_DIGEST_ALGORITHMS; ++alg) { if (!tor_mem_is_zero(digests->d[alg], DIGEST256_LEN)) { - if (fast_memeq(target->digests.d[alg], digests->d[alg], DIGEST256_LEN)) { + if (fast_memeq(target->digests.d[alg], digests->d[alg], + DIGEST256_LEN)) { ++n_matches; } else { *msg_out = "Mismatched digest."; |