aboutsummaryrefslogtreecommitdiff
path: root/src/common/crypto.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2006-09-29 22:33:40 +0000
committerNick Mathewson <nickm@torproject.org>2006-09-29 22:33:40 +0000
commit7d366f61cb1b2b9965b02479c751a6987f328b76 (patch)
treed65fbad59801acc40f9098aef1470a53ce0af426 /src/common/crypto.c
parent8308a379086a82126f685f3d8668e48b0453880d (diff)
downloadtor-7d366f61cb1b2b9965b02479c751a6987f328b76.tar
tor-7d366f61cb1b2b9965b02479c751a6987f328b76.tar.gz
r9025@Kushana: nickm | 2006-09-29 18:33:13 -0400
Differentiate more duplicated log entries svn:r8542
Diffstat (limited to 'src/common/crypto.c')
-rw-r--r--src/common/crypto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/crypto.c b/src/common/crypto.c
index c7fea55eb..6cb0031fb 100644
--- a/src/common/crypto.c
+++ b/src/common/crypto.c
@@ -734,7 +734,7 @@ crypto_pk_public_checksig_digest(crypto_pk_env_t *env, const char *data,
tor_assert(sig);
if (crypto_digest(digest,data,datalen)<0) {
- log_warn(LD_CRYPTO, "couldn't compute digest");
+ log_warn(LD_BUG, "couldn't compute digest");
return -1;
}
r = crypto_pk_public_checksig(env,buf,sig,siglen);