Browse Source

If we want to be more strict in _routerlist_find_elt I better call it properly

svn:r10726
Peter Palfrader 17 years ago
parent
commit
d071df748a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/or/routerlist.c

+ 1 - 1
src/or/routerlist.c

@@ -2126,7 +2126,7 @@ routerlist_replace(routerlist_t *rl, routerinfo_t *ri_old,
     smartlist_set(rl->routers, idx, ri_new);
     ri_old->routerlist_index = -1;
     ri_new->routerlist_index = idx;
-    tor_assert( _routerlist_find_elt(rl->routers, ri_old, 0) == -1 );
+    tor_assert( _routerlist_find_elt(rl->routers, ri_old, -1) == -1 );
   } else {
     log_warn(LD_BUG, "Appending entry from routerlist_replace.");
     routerlist_insert(rl, ri_new);