[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r13249: When we get a consensus that's been signed by more people th (in tor/trunk: . src/or)
Author: arma
Date: 2008-01-23 21:31:37 -0500 (Wed, 23 Jan 2008)
New Revision: 13249
Modified:
tor/trunk/ChangeLog
tor/trunk/src/or/networkstatus.c
Log:
When we get a consensus that's been signed by more people than
we expect, don't log about it; it's not a big deal.
Modified: tor/trunk/ChangeLog
===================================================================
--- tor/trunk/ChangeLog 2008-01-24 01:14:50 UTC (rev 13248)
+++ tor/trunk/ChangeLog 2008-01-24 02:31:37 UTC (rev 13249)
@@ -24,6 +24,8 @@
o Minor bugfixes:
- When we setconf ClientOnly to 1, close any current OR and Dir
listeners. Reported by mwenge.
+ - When we get a consensus that's been signed by more people than
+ we expect, don't log about it; it's not a big deal.
o Minor features:
- Don't answer "/tor/networkstatus-bridges" directory requests if
Modified: tor/trunk/src/or/networkstatus.c
===================================================================
--- tor/trunk/src/or/networkstatus.c 2008-01-24 01:14:50 UTC (rev 13248)
+++ tor/trunk/src/or/networkstatus.c 2008-01-24 02:31:37 UTC (rev 13249)
@@ -435,11 +435,11 @@
if (warn >= 0) {
SMARTLIST_FOREACH(unrecognized, networkstatus_voter_info_t *, voter,
{
- log(severity, LD_DIR, "Consensus includes unrecognized authority '%s' "
- "at %s:%d (contact %s; identity %s)",
- voter->nickname, voter->address, (int)voter->dir_port,
- voter->contact?voter->contact:"n/a",
- hex_str(voter->identity_digest, DIGEST_LEN));
+ log_info(LD_DIR, "Consensus includes unrecognized authority '%s' "
+ "at %s:%d (contact %s; identity %s)",
+ voter->nickname, voter->address, (int)voter->dir_port,
+ voter->contact?voter->contact:"n/a",
+ hex_str(voter->identity_digest, DIGEST_LEN));
});
SMARTLIST_FOREACH(need_certs_from, networkstatus_voter_info_t *, voter,
{