From bce625987d4642df2cf0ac996dd45ec6fbf5ce1d Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Mon, 12 Aug 2002 21:20:30 +0000 Subject: [PATCH 1/1] Do not use the word 'modulus', which is a class template name in VC++ 6.0/SP5. PR: 216, point 3 --- crypto/bn/bn.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/bn/bn.h b/crypto/bn/bn.h index 1eaf879553..b40682f831 100644 --- a/crypto/bn/bn.h +++ b/crypto/bn/bn.h @@ -430,7 +430,7 @@ int BN_mod_mul_montgomery(BIGNUM *r,const BIGNUM *a,const BIGNUM *b, int BN_from_montgomery(BIGNUM *r,const BIGNUM *a, BN_MONT_CTX *mont, BN_CTX *ctx); void BN_MONT_CTX_free(BN_MONT_CTX *mont); -int BN_MONT_CTX_set(BN_MONT_CTX *mont,const BIGNUM *modulus,BN_CTX *ctx); +int BN_MONT_CTX_set(BN_MONT_CTX *mont,const BIGNUM *mod,BN_CTX *ctx); BN_MONT_CTX *BN_MONT_CTX_copy(BN_MONT_CTX *to,BN_MONT_CTX *from); BN_BLINDING *BN_BLINDING_new(BIGNUM *A,BIGNUM *Ai,BIGNUM *mod); -- 2.25.1