[tor-commits] [tor/master] Downgrade RSA signature verification failure error message to info loglevel.

nickm at torproject.org nickm at torproject.org
Wed Nov 12 15:28:37 UTC 2014


commit 4b18d8931b0c719b52ce0e2ac39a03dbf2b0adb0
Author: rl1987 <rl1987 at sdf.lonestar.org>
Date:   Sun Nov 9 17:39:23 2014 +0200

    Downgrade RSA signature verification failure error message to info loglevel.
---
 src/common/crypto.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/common/crypto.c b/src/common/crypto.c
index 90a16fa..7138ba0 100644
--- a/src/common/crypto.c
+++ b/src/common/crypto.c
@@ -1012,7 +1012,7 @@ crypto_pk_public_checksig(crypto_pk_t *env, char *to,
                          env->key, RSA_PKCS1_PADDING);
 
   if (r<0) {
-    crypto_log_errors(LOG_WARN, "checking RSA signature");
+    crypto_log_errors(LOG_INFO, "checking RSA signature");
     return -1;
   }
   return r;





More information about the tor-commits mailing list