diff options
author | Roger Dingledine <arma@torproject.org> | 2010-04-21 03:12:14 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2010-04-21 03:12:14 -0400 |
commit | 4f307e038272e368cd307ffa5e31b568b0729c48 (patch) | |
tree | e4610ee1eb11c869440d81ac57b88963ad3ac327 /src/or/dirvote.c | |
parent | 7231e289dd93d6aa3d17c46fd8ae44e70b365980 (diff) | |
download | tor-4f307e038272e368cd307ffa5e31b568b0729c48.tar.gz tor-4f307e038272e368cd307ffa5e31b568b0729c48.zip |
immediate reachability check for new relays
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 6053e50902..d5610131a9 100644 --- a/src/or/dirvote.c +++ b/src/or/dirvote.c @@ -2696,7 +2696,8 @@ dirvote_add_vote(const char *vote_body, const char **msg_out, int *status_out) networkstatus_voter_info_t *vi_old = get_voter(v->vote); if (!memcmp(vi_old->vote_digest, vi->vote_digest, DIGEST_LEN)) { /* Ah, it's the same vote. Not a problem. */ - log_info(LD_DIR, "Discarding a vote we already have."); + log_info(LD_DIR, "Discarding a vote we already have (from %s).", + vi->address); if (*status_out < 200) *status_out = 200; goto discard; |