aboutsummaryrefslogtreecommitdiff
path: root/src/or
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2007-08-13 20:45:36 +0000
committerNick Mathewson <nickm@torproject.org>2007-08-13 20:45:36 +0000
commit7d990b5aa104fff4c23eba2366bb215ac446e7b2 (patch)
tree56cedbc3dd8291290ef58590c3897889af83a0e2 /src/or
parentb4adf151d2a8dcfc92e9fe990e10dbee40617c80 (diff)
downloadtor-7d990b5aa104fff4c23eba2366bb215ac446e7b2.tar.gz
tor-7d990b5aa104fff4c23eba2366bb215ac446e7b2.zip
r13992@Kushana: nickm | 2007-08-13 16:45:22 -0400
A vote we already have a nd a double-upload are different things. svn:r11093
Diffstat (limited to 'src/or')
-rw-r--r--src/or/dirvote.c11
-rw-r--r--src/or/routerlist.c2
2 files changed, 10 insertions, 3 deletions
diff --git a/src/or/dirvote.c b/src/or/dirvote.c
index dd8bc7aa08..ccaa0f2891 100644
--- a/src/or/dirvote.c
+++ b/src/or/dirvote.c
@@ -1212,8 +1212,15 @@ dirvote_add_vote(const char *vote_body, const char **msg_out)
if (! memcmp(v->vote->cert->cache_info.identity_digest,
vote->cert->cache_info.identity_digest,
DIGEST_LEN)) {
- log_notice(LD_DIR, "We already have a pending vote from this dir");
- if (v->vote->published < vote->published) {
+ networkstatus_voter_info_t *vi_old = smartlist_get(v->vote->voters, 0);
+ 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.");
+ *msg_out = "ok";
+ goto err;
+ } else if (v->vote->published < vote->published) {
+ log_notice(LD_DIR, "Replacing an older pending vote from this "
+ "directory.");
cached_dir_decref(v->vote_body);
networkstatus_vote_free(v->vote);
v->vote_body = new_cached_dir(tor_strdup(vote_body),
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index 95806fa020..41d2888a0f 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -184,7 +184,7 @@ router_reload_consensus_networkstatus(void)
tor_snprintf(filename,sizeof(filename),"%s"PATH_SEPARATOR"cached-consensus",
get_options()->DataDirectory);
- s = read_file_to_str(filename, RTFS_IGNORE_MISSING, NULL);
+ s = read_file_to_str(filename, RFTS_IGNORE_MISSING, NULL);
if (!s)
return 0;