diff options
author | Roger Dingledine <arma@torproject.org> | 2006-04-10 05:48:04 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-04-10 05:48:04 +0000 |
commit | acc2eb445d3847f6853c92737a98a99e0bce0cb1 (patch) | |
tree | 65c5e0eb22f3262ac1e865223f052e0170448e06 /src/or | |
parent | 82bc49d922ab1161754904aaaaf3141a20a54af6 (diff) | |
download | tor-acc2eb445d3847f6853c92737a98a99e0bce0cb1.tar.gz tor-acc2eb445d3847f6853c92737a98a99e0bce0cb1.zip |
and get rid of an extra variable
svn:r6349
Diffstat (limited to 'src/or')
-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 ba960c7f60..ecd4029e46 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -3573,7 +3573,7 @@ int router_have_minimum_dir_info(void) { int tot = 0, num_running = 0; - int n_ns, n_tried, n_authorities, res, avg; + int n_ns, n_authorities, res, avg; static int have_enough = 0; if (!networkstatus_list || !routerlist) { res = 0; |