summaryrefslogtreecommitdiffstats
path: root/libtommath/bn_mp_montgomery_reduce.c
diff options
context:
space:
mode:
Diffstat (limited to 'libtommath/bn_mp_montgomery_reduce.c')
-rw-r--r--libtommath/bn_mp_montgomery_reduce.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libtommath/bn_mp_montgomery_reduce.c b/libtommath/bn_mp_montgomery_reduce.c
index ffe8341..3ce1f15 100644
--- a/libtommath/bn_mp_montgomery_reduce.c
+++ b/libtommath/bn_mp_montgomery_reduce.c
@@ -17,8 +17,8 @@ mp_err mp_montgomery_reduce(mp_int *x, const mp_int *n, mp_digit rho)
* are fixed up in the inner loop.
*/
digs = (n->used * 2) + 1;
- if ((digs < MP_WARRAY) &&
- (x->used <= MP_WARRAY) &&
+ if ((digs < PRIVATE_MP_WARRAY) &&
+ (x->used <= PRIVATE_MP_WARRAY) &&
(n->used < MP_MAXFAST)) {
return s_mp_montgomery_reduce_fast(x, n, rho);
}