diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-12-15 20:56:46 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-12-15 20:56:46 +0000 |
commit | 6b1305aeeb344289e669b68e6b0745fd762ca86a (patch) | |
tree | a982b5ee41cbce0db74d0ac25031261881b3ed50 /src/or | |
parent | 3ea32f51cbae1e42e3425539f26c63e87360bf2b (diff) | |
download | tor-6b1305aeeb344289e669b68e6b0745fd762ca86a.tar tor-6b1305aeeb344289e669b68e6b0745fd762ca86a.tar.gz |
Flip a misplaced not
svn:r5593
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 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."); } |