diff options
author | Bodo Möller <bodo@openssl.org> | 2000-06-09 11:11:30 +0200 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 2000-06-09 11:11:30 +0200 |
commit | 814ed26cfa66945a537f2764f543340845e561a5 (patch) | |
tree | e171d5affa2ddcd8e5a03f5ec060dc5750c354ea /crypto/bn/bn_exp2.c | |
parent | Another attempt to allow compiling on SunOS 4.*. (diff) | |
download | openssl-814ed26cfa66945a537f2764f543340845e561a5.tar.xz openssl-814ed26cfa66945a537f2764f543340845e561a5.zip |
Comment for increased code clarity.
Diffstat (limited to '')
-rw-r--r-- | crypto/bn/bn_exp2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_exp2.c b/crypto/bn/bn_exp2.c index 0b3e13f6bc..29029f4c72 100644 --- a/crypto/bn/bn_exp2.c +++ b/crypto/bn/bn_exp2.c @@ -240,7 +240,7 @@ int BN_mod_exp2_mont(BIGNUM *rr, BIGNUM *a1, BIGNUM *p1, BIGNUM *a2, { /* consider bits b-window1+1 .. b for this window */ i = b-window1+1; - while (!BN_is_bit_set(p1, i)) + while (!BN_is_bit_set(p1, i)) /* works for i<0 */ i++; wpos1 = i; wvalue1 = 1; |