diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | src/or/dirvote.c | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,4 +1,8 @@ Changes in version 0.2.0.32 - 2008-??-?? + o Major bugfixes: + - Fix a DOS opportunity during the voting signature collection process + at directory authorities. Spotted by rovv. Bugfix on 0.2.0.x. + o Minor bugfixes: - Fix several infrequent memory leaks spotted by Coverity. - When testing for libevent functions, set the LDFLAGS variable diff --git a/src/or/dirvote.c b/src/or/dirvote.c index a34b7f1803..d3c1ce7bbf 100644 --- a/src/or/dirvote.c +++ b/src/or/dirvote.c @@ -1089,8 +1089,8 @@ networkstatus_add_detached_signatures(networkstatus_t *target, memcpy(target_voter->signing_key_digest, src_voter->signing_key_digest, DIGEST_LEN); target_voter->signature_len = src_voter->signature_len; - target_voter->good_signature = 1; - target_voter->bad_signature = 0; + target_voter->good_signature = src_voter->good_signature; + target_voter->bad_signature = src_voter->bad_signature; } else { log_info(LD_DIR, "Not adding signature from %s", voter_identity); } |