Browse Source

I think nick meant to compare r2->platform the second time

svn:r5282
Peter Palfrader 20 years ago
parent
commit
e54efb1655
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/or/routerlist.c

+ 1 - 1
src/or/routerlist.c

@@ -2917,7 +2917,7 @@ router_differences_are_cosmetic(routerinfo_t *r1, routerinfo_t *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(r1->platform, "0.1.1.6-alpha"))
+      tor_version_as_new_as(r2->platform, "0.1.1.6-alpha"))
     return 0;
 
   if (r1->published_on > r2->published_on) {