summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_gf2m.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2002-08-03 18:27:47 +0000
committerBodo Möller <bodo@openssl.org>2002-08-03 18:27:47 +0000
commit183847747af50de1f0c6da1224e0ad6b6f54ebea (patch)
tree5f70b87bf030a35b2a7195db01505495b242f6d4 /crypto/bn/bn_gf2m.c
parentbac6012308e05c187bc11bcb44b984bcd71365e7 (diff)
fix bn_expand2
Diffstat (limited to 'crypto/bn/bn_gf2m.c')
-rw-r--r--crypto/bn/bn_gf2m.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_gf2m.c b/crypto/bn/bn_gf2m.c
index c969685c87..bf7031b3ab 100644
--- a/crypto/bn/bn_gf2m.c
+++ b/crypto/bn/bn_gf2m.c
@@ -284,7 +284,7 @@ int BN_GF2m_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b)
if (a->top < b->top) { at = b; bt = a; }
else { at = a; bt = b; }
- bn_wexpand(r, at->top);
+ bn_expand2(r, at->top);
for (i = 0; i < bt->top; i++)
{