From: Bodo Möller Date: Thu, 27 Jan 2000 14:31:31 +0000 (+0000) Subject: typo in a comment X-Git-Tag: OpenSSL_0_9_5beta1~180 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2233bed1cbf138fb670d4000991d12327600b9d4;p=oweals%2Fopenssl.git typo in a comment --- diff --git a/crypto/bn/bn_mont.c b/crypto/bn/bn_mont.c index cdf7ca191a..aaf57da764 100644 --- a/crypto/bn/bn_mont.c +++ b/crypto/bn/bn_mont.c @@ -305,7 +305,7 @@ int BN_MONT_CTX_set(BN_MONT_CTX *mont, const BIGNUM *mod, BN_CTX *ctx) else /* if N mod word size == 1 */ BN_set_word(&Ri,BN_MASK2); /* Ri-- (mod word size) */ BN_div(&Ri,NULL,&Ri,&tmod,ctx); /* Ni = (R*Ri-1)/N, - * keep only list significant word: */ + * keep only least significant word: */ mont->n0=Ri.d[0]; BN_free(&Ri); }