aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/dsa
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2005-05-09 00:06:54 +0000
committerBodo Möller <bodo@openssl.org>2005-05-09 00:06:54 +0000
commitb0ac0a8ef832b2753c9ace2a79bcf875c87d8c88 (patch)
tree233e9101bf9858b29f1c8233ef7b7ea369e72198 /crypto/dsa
parent0f4499360e9411c4dae9c6ce4b766bb4b1f25ffe (diff)
downloadopenssl-b0ac0a8ef832b2753c9ace2a79bcf875c87d8c88.tar.gz
improve comment readability
Diffstat (limited to 'crypto/dsa')
-rw-r--r--crypto/dsa/dsa_ossl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/dsa/dsa_ossl.c b/crypto/dsa/dsa_ossl.c
index 8f7eceaf16..25cd8484aa 100644
--- a/crypto/dsa/dsa_ossl.c
+++ b/crypto/dsa/dsa_ossl.c
@@ -328,7 +328,7 @@ static int dsa_do_verify(const unsigned char *dgst, int dgst_len, DSA_SIG *sig,
ret=(BN_ucmp(&u1, sig->r) == 0);
err:
- /* XXX: surely this is wrong - if ret is 0, it just didn't verify
+ /* XXX: surely this is wrong - if ret is 0, it just didn't verify;
there is no error in BN. Test should be ret == -1 (Ben) */
if (ret != 1) DSAerr(DSA_F_DSA_DO_VERIFY,ERR_R_BN_LIB);
if (ctx != NULL) BN_CTX_free(ctx);