From: Richard Levitte Date: Mon, 12 Aug 2002 21:20:25 +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_7-beta4~203^2~5 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=f13ddd5d0a6dd1dbccdc08ee904c09b3dc890ad1 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 ce2e746f6a..1170465b1f 100644 --- a/crypto/bn/bn.h +++ b/crypto/bn/bn.h @@ -456,7 +456,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);