Browse Source

Flip a misplaced not

svn:r5593
Nick Mathewson 20 years ago
parent
commit
6b1305aeeb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/or/routerlist.c

+ 1 - 1
src/or/routerlist.c

@@ -3338,7 +3338,7 @@ router_have_minimum_dir_info(void)
     log(LOG_NOTICE, LD_DIR,
     log(LOG_NOTICE, LD_DIR,
         "We now have enough directory information to build circuits.");
         "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 "
     log(LOG_NOTICE, LD_DIR, "Our directory information is no longer up-to-date "
         "enough to build circuits.");
         "enough to build circuits.");
   }
   }