summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2005-12-12 01:02:08 +0000
committerNick Mathewson <nickm@torproject.org>2005-12-12 01:02:08 +0000
commit32126cced1229f456de64ddcbc05ff0d6f191c4a (patch)
treea29d3cc3bc8225fd2d94df1e1a84d5de36fd5ddb
parent60f62473562c280480405cdb22f991db7c759480 (diff)
downloadtor-32126cced1229f456de64ddcbc05ff0d6f191c4a.tar.gz
tor-32126cced1229f456de64ddcbc05ff0d6f191c4a.zip
Make directory authorities ignore router uploads that have only cosmetic differences: now regardless of version!
svn:r5573
-rw-r--r--src/or/routerlist.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index 37c9ed4abc..da11ef5d94 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -3252,11 +3252,6 @@ router_differences_are_cosmetic(routerinfo_t *r1, routerinfo_t *r2)
{
tor_assert(r1 && r2);
- /* post-0.1.1.6 servers know what they're doing. */
- if (tor_version_as_new_as(r1->platform, "0.1.1.6-alpha") ||
- tor_version_as_new_as(r2->platform, "0.1.1.6-alpha"))
- return 0;
-
/* r1 should be the one that was published first. */
if (r1->cache_info.published_on > r2->cache_info.published_on) {
routerinfo_t *ri_tmp = r2;