Eliminate gcc warning in bn_mont.c.
authorAndy Polyakov <appro@openssl.org>
Sat, 22 Oct 2005 20:17:01 +0000 (20:17 +0000)
committerAndy Polyakov <appro@openssl.org>
Sat, 22 Oct 2005 20:17:01 +0000 (20:17 +0000)
crypto/bn/bn_mont.c

index f035c189737b3008043507b107f1a52604c2b59b..7a8b67ba5547a99307aeb9fe6827539235bdf88c 100644 (file)
@@ -334,8 +334,8 @@ int BN_MONT_CTX_set(BN_MONT_CTX *mont, const BIGNUM *mod, BN_CTX *ctx)
                if (!(BN_set_bit(R,2*BN_BITS2))) goto err;
 
                                                                tmod.top=0;
-               if (buf[0] = mod->d[0])                         tmod.top=1;
-               if (buf[1] = mod->top>1 ? mod->d[1] : 0)        tmod.top=2;
+               if ((buf[0] = mod->d[0]))                       tmod.top=1;
+               if ((buf[1] = mod->top>1 ? mod->d[1] : 0))      tmod.top=2;
 
                if ((BN_mod_inverse(Ri,R,&tmod,ctx)) == NULL)
                        goto err;