[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] [tor/master] only complain when rejecting a descriptor if it has contact info
Author: Roger Dingledine <arma@xxxxxxxxxxxxxx>
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