[or-cvs] [tor/master] only complain when rejecting a descriptor if it has contact info

arma at seul.org arma at seul.org
Tue Nov 17 12:39:54 UTC 2009


Author: Roger Dingledine <arma at torproject.org>
Date: Tue, 17 Nov 2009 07:39:15 -0500
Subject: only complain when rejecting a descriptor if it has contact info
Commit: 2ebd22152eeb5a9dcfc1a8c508ebd57a836290e1

---
 src/or/dirserv.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/or/dirserv.c b/src/or/dirserv.c
index d9a5dec..3700cd1 100644
--- a/src/or/dirserv.c
+++ b/src/or/dirserv.c
@@ -523,7 +523,7 @@ authdir_wants_to_reject_router(routerinfo_t *ri, const char **msg,
   /* Okay.  Now check whether the fingerprint is recognized. */
   uint32_t status = dirserv_router_get_status(ri, msg);
   time_t now;
-  int severity = complain ? LOG_NOTICE : LOG_INFO;
+  int severity = (complain && ri->contact_info) ? LOG_NOTICE : LOG_INFO;
   tor_assert(msg);
   if (status & FP_REJECT)
     return -1; /* msg is already set. */
-- 
1.5.6.5



More information about the tor-commits mailing list