aboutsummaryrefslogtreecommitdiff
path: root/src/or
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2005-12-15 20:56:46 +0000
committerNick Mathewson <nickm@torproject.org>2005-12-15 20:56:46 +0000
commit6b1305aeeb344289e669b68e6b0745fd762ca86a (patch)
treea982b5ee41cbce0db74d0ac25031261881b3ed50 /src/or
parent3ea32f51cbae1e42e3425539f26c63e87360bf2b (diff)
downloadtor-6b1305aeeb344289e669b68e6b0745fd762ca86a.tar
tor-6b1305aeeb344289e669b68e6b0745fd762ca86a.tar.gz
Flip a misplaced not
svn:r5593
Diffstat (limited to 'src/or')
-rw-r--r--src/or/routerlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index 8d8523178..fa766c8e9 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -3338,7 +3338,7 @@ router_have_minimum_dir_info(void)
log(LOG_NOTICE, LD_DIR,
"We now have enough directory information to build circuits.");
}
- if (!res && !have_enough) {
+ if (!res && have_enough) {
log(LOG_NOTICE, LD_DIR, "Our directory information is no longer up-to-date "
"enough to build circuits.");
}