]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Flip a misplaced not
authorNick Mathewson <nickm@torproject.org>
Thu, 15 Dec 2005 20:56:46 +0000 (20:56 +0000)
committerNick Mathewson <nickm@torproject.org>
Thu, 15 Dec 2005 20:56:46 +0000 (20:56 +0000)
svn:r5593

src/or/routerlist.c

index 8d8523178d67952f40aa37e8aabcada78761b4c4..fa766c8e9ec2bcc76045eb68a6202a4f012515b7 100644 (file)
@@ -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.");
   }