]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
When we get a consensus that's been signed by more people than
authorRoger Dingledine <arma@torproject.org>
Thu, 24 Jan 2008 02:31:37 +0000 (02:31 +0000)
committerRoger Dingledine <arma@torproject.org>
Thu, 24 Jan 2008 02:31:37 +0000 (02:31 +0000)
we expect, don't log about it; it's not a big deal.

svn:r13249

ChangeLog
src/or/networkstatus.c

index c0a9950260a1a85bb97f4b48993918108f5ba94e..25f878c73d76a43dc87cb047b391da15d9c5f9a4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -24,6 +24,8 @@ Changes in version 0.2.0.18-alpha - 2008-01-??
   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
index e0b07518ab29dcb01464ae64e2acce6baf1e6c22..961adab07efad5e3879526218b3bfed63e701c56 100644 (file)
@@ -435,11 +435,11 @@ networkstatus_check_consensus_signature(networkstatus_vote_t *consensus,
   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,
       {