diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-12-15 21:38:59 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-12-15 21:38:59 +0000 |
commit | cf8c70b79c69b0227f43e42b689da75379ac7069 (patch) | |
tree | 5ae646c032fa49c46fc2097543443b7cf735650e | |
parent | 280c62314eff5c2e4bf266da02f9430ba937238b (diff) | |
download | tor-cf8c70b79c69b0227f43e42b689da75379ac7069.tar.gz tor-cf8c70b79c69b0227f43e42b689da75379ac7069.zip |
fix compile
svn:r5600
-rw-r--r-- | src/or/routerlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 8ebe6c2b28..9fd9add8f6 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -3017,7 +3017,7 @@ routers_update_status_from_networkstatus(smartlist_t *routers, router->is_verified = rs->status.is_valid; router->is_running = rs->status.is_running; router->is_fast = rs->status.is_fast; - router->is_stable = rs->is_stable; + router->is_stable = rs->status.is_stable; } if (router->is_running && ds) { ds->n_networkstatus_failures = 0; |