[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] fix logic error: not unnamed is good.
Update of /home2/or/cvsroot/tor/src/or
In directory moria:/home/arma/work/onion/cvs/tor/src/or
Modified Files:
routerlist.c
Log Message:
fix logic error: not unnamed is good.
Index: routerlist.c
===================================================================
RCS file: /home2/or/cvsroot/tor/src/or/routerlist.c,v
retrieving revision 1.365
retrieving revision 1.366
diff -u -d -r1.365 -r1.366
--- routerlist.c 15 Nov 2005 03:05:23 -0000 1.365
+++ routerlist.c 15 Nov 2005 09:15:43 -0000 1.366
@@ -2524,7 +2524,7 @@
n_recent-n_valid, n_recent);
have_warned_about_unverified_status = 1;
} else if (!n_named) { // (n_named <= n_recent/2) {
- warn(LD_GENERAL, "%d/%d recent directory servers list us as unnamed. Please consider sending your identity fingerprint to the tor-ops.",
+ warn(LD_GENERAL, "%d/%d recent directory servers recognize this server. Please consider sending your identity fingerprint to the tor-ops.",
n_recent-n_named, n_recent);
have_warned_about_unverified_status = 1;
}