aboutsummaryrefslogtreecommitdiffstats
path: root/res/res_crypto.c
diff options
context:
space:
mode:
Diffstat (limited to 'res/res_crypto.c')
-rwxr-xr-xres/res_crypto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_crypto.c b/res/res_crypto.c
index 912d7c8c0..a102913bd 100755
--- a/res/res_crypto.c
+++ b/res/res_crypto.c
@@ -416,7 +416,7 @@ int ast_check_signature_bin(struct ast_key *key, char *msg, int msglen, unsigned
res = RSA_verify(NID_sha1, digest, sizeof(digest), dsig, 128, key->rsa);
if (!res) {
- ast_log(LOG_DEBUG, "Key failed verification\n");
+ ast_log(LOG_DEBUG, "Key failed verification: %s\n", key->name);
return -1;
}
/* Pass */