summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2006-02-05 05:11:24 +0000
committerNick Mathewson <nickm@torproject.org>2006-02-05 05:11:24 +0000
commit157e6a025af582d57f4e5272e35c5fbf4f2c78fb (patch)
tree2d1de4a4feb5ccd9c1670001b1a4219ed4039bd5
parent555a64e06de124e56f341ea96f8f3866d9ed5a1b (diff)
downloadtor-157e6a025af582d57f4e5272e35c5fbf4f2c78fb.tar.gz
tor-157e6a025af582d57f4e5272e35c5fbf4f2c78fb.zip
Stupid cut-and-paste bug.
svn:r5917
-rw-r--r--src/or/routerlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index e787ce8dd1..cd87acf535 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -3079,7 +3079,7 @@ routerstatus_list_update_from_networkstatus(time_t now)
rs_out->status.is_running = n_running > n_recent/2;
rs_out->status.is_exit = n_exit > n_statuses/2;
rs_out->status.is_fast = n_fast > n_statuses/2;
- rs_out->status.is_fast = n_guard > n_statuses/2;
+ rs_out->status.is_possible_guard = n_guard > n_statuses/2;
rs_out->status.is_stable = n_stable > n_statuses/2;
rs_out->status.is_v2_dir = n_v2_dir > n_statuses/2;
}