aboutsummaryrefslogtreecommitdiffstats
path: root/res/res_crypto.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-10-16 15:36:16 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-10-16 15:36:16 +0000
commit1f018b50baefeb90b3dc042b6f0c49d48206a1fd (patch)
tree896fed5ac1a26fdde9b550a4a55b0257bf67859e /res/res_crypto.c
parent1f61a35de29fe888be622b1b7a5690a794695e0e (diff)
Minor improvements to debug output (bug #2644)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4017 f38db490-d61c-443f-a65b-d21fe96a405b
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 */