From 6567ec9ccf108ac2b51da77fff5e00b722640765 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Sat, 7 May 2005 05:17:36 +0000 Subject: Functions work better when you call them. Resolve a bug which would prevent unreachable dirports from getting suppressed. svn:r4183 --- src/or/router.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/router.c b/src/or/router.c index 09a9bc6b92..1ec4665b82 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -834,7 +834,7 @@ int router_dump_router_to_string(char *s, size_t maxlen, routerinfo_t *router, router->nickname, router->address, router->or_port, - check_whether_dirport_reachable ? router->dir_port : 0, + check_whether_dirport_reachable() ? router->dir_port : 0, router->platform, published, fingerprint, -- cgit v1.2.3-54-g00ecf