[or-cvs] Flip a misplaced not

Nick Mathewson nickm at seul.org
Thu Dec 15 20:56:49 UTC 2005


Update of /home/or/cvsroot/tor/src/or
In directory moria:/tmp/cvs-serv23246/src/or

Modified Files:
	routerlist.c 
Log Message:
Flip a misplaced not

Index: routerlist.c
===================================================================
RCS file: /home/or/cvsroot/tor/src/or/routerlist.c,v
retrieving revision 1.394
retrieving revision 1.395
diff -u -d -r1.394 -r1.395
--- routerlist.c	15 Dec 2005 20:44:15 -0000	1.394
+++ routerlist.c	15 Dec 2005 20:56:46 -0000	1.395
@@ -3338,7 +3338,7 @@
     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.");
   }



More information about the tor-commits mailing list