]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Downgrade RSA signature verification failure error message to info loglevel.
authorrl1987 <rl1987@sdf.lonestar.org>
Sun, 9 Nov 2014 15:39:23 +0000 (17:39 +0200)
committerrl1987 <rl1987@sdf.lonestar.org>
Sun, 9 Nov 2014 15:39:23 +0000 (17:39 +0200)
src/common/crypto.c

index 90a16fab1af4f237b41ed5c021c91bc97ca56f55..7138ba003e6adbe0109801144d8dfba594b577a8 100644 (file)
@@ -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;