diff options
author | Roger Dingledine <arma@torproject.org> | 2005-12-15 21:41:27 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-12-15 21:41:27 +0000 |
commit | 002c9b3589490878f5b04efb277583a0e84edc64 (patch) | |
tree | d739a9eba204af291886949bceeecd5ed5f58966 /src | |
parent | c55ee506616f324f0e6818bfbe6cc89966ea6ce3 (diff) | |
download | tor-002c9b3589490878f5b04efb277583a0e84edc64.tar.gz tor-002c9b3589490878f5b04efb277583a0e84edc64.zip |
clean up a lot message, and remove a line that does nothing.
svn:r5603
Diffstat (limited to 'src')
-rw-r--r-- | src/or/routerlist.c | 4 |
1 files 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; } |