From 002c9b3589490878f5b04efb277583a0e84edc64 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Thu, 15 Dec 2005 21:41:27 +0000 Subject: [PATCH] clean up a lot message, and remove a line that does nothing. svn:r5603 --- src/or/routerlist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 9fd9add8f6..32cd515be8 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -3342,9 +3342,9 @@ router_have_minimum_dir_info(void) } if (!res && have_enough) { log(LOG_NOTICE, LD_DIR,"Our directory information is no longer up-to-date " - "enough to build circuits."); + "enough to build circuits.%s", + any_running ? "" : " (All servers seem down -- network down?)"); } - have_enough = res; return res; }