summaryrefslogtreecommitdiff
path: root/src/or/dirvote.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2010-04-21 03:12:14 -0400
committerRoger Dingledine <arma@torproject.org>2010-04-21 03:12:14 -0400
commit4f307e038272e368cd307ffa5e31b568b0729c48 (patch)
treee4610ee1eb11c869440d81ac57b88963ad3ac327 /src/or/dirvote.c
parent7231e289dd93d6aa3d17c46fd8ae44e70b365980 (diff)
downloadtor-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.c3
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;