From: Richard Levitte Date: Wed, 14 Aug 2002 12:08:44 +0000 (+0000) Subject: Do not use the word 'modulus', which is a class template name in VC++ 6.0/SP5. X-Git-Tag: OpenSSL_0_9_6h~118 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7ee5c0a0a2d798936520eb19b8cc57c55202f33b;p=oweals%2Fopenssl.git Do not use the word 'modulus', which is a class template name in VC++ 6.0/SP5. PR: 216, point 3 --- diff --git a/crypto/bn/bn.h b/crypto/bn/bn.h index 2ea9cd7203..03bae9b950 100644 --- a/crypto/bn/bn.h +++ b/crypto/bn/bn.h @@ -413,7 +413,7 @@ int BN_mod_mul_montgomery(BIGNUM *r,BIGNUM *a,BIGNUM *b,BN_MONT_CTX *mont, BN_CTX *ctx); int BN_from_montgomery(BIGNUM *r,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);