From: Nick Mathewson Date: Thu, 15 Dec 2005 20:56:46 +0000 (+0000) Subject: Flip a misplaced not X-Git-Tag: tor-0.1.1.11-alpha~191 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6b1305aeeb344289e669b68e6b0745fd762ca86a;p=thirdparty%2Ftor.git Flip a misplaced not svn:r5593 --- diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 8d8523178d..fa766c8e9e 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."); }