summaryrefslogtreecommitdiff
path: root/src/or/routerlist.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2005-12-15 21:44:23 +0000
committerRoger Dingledine <arma@torproject.org>2005-12-15 21:44:23 +0000
commitedde3fcf25795f5d5651c8defeab25189e7c2069 (patch)
treef99f4b5dd4f8b148fc99a0c14bfa206328f386b5 /src/or/routerlist.c
parent002c9b3589490878f5b04efb277583a0e84edc64 (diff)
downloadtor-edde3fcf25795f5d5651c8defeab25189e7c2069.tar.gz
tor-edde3fcf25795f5d5651c8defeab25189e7c2069.zip
ah ha, that variable was static. not useless after all.
svn:r5604
Diffstat (limited to 'src/or/routerlist.c')
-rw-r--r--src/or/routerlist.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index 32cd515be8..04359f5e1e 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -3345,6 +3345,7 @@ router_have_minimum_dir_info(void)
"enough to build circuits.%s",
any_running ? "" : " (All servers seem down -- network down?)");
}
+ have_enough = res;
return res;
}