From: Roger Dingledine Date: Thu, 15 Dec 2005 21:44:23 +0000 (+0000) Subject: ah ha, that variable was static. not useless after all. X-Git-Tag: tor-0.1.1.11-alpha~180 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=edde3fcf25795f5d5651c8defeab25189e7c2069;p=thirdparty%2Ftor.git ah ha, that variable was static. not useless after all. svn:r5604 --- 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; }