From: Richard Levitte Date: Mon, 12 Aug 2002 21:20:30 +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~207 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=bce625987d4642df2cf0ac996dd45ec6fbf5ce1d;hp=3c1a6f441b9864dc0ab757438867c3e73a6220eb;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 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);