From: Bodo Möller Date: Sat, 3 Aug 2002 18:28:34 +0000 (+0000) Subject: oops, undo previous change (was just for testing) X-Git-Tag: OpenSSL_0_9_7-beta4~218^2~3 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=d28735a05bbd20ab628a775e2877e1666b2eb865;ds=sidebyside oops, undo previous change (was just for testing) --- diff --git a/crypto/bn/bn_gf2m.c b/crypto/bn/bn_gf2m.c index bf7031b3ab..c969685c87 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_expand2(r, at->top); + bn_wexpand(r, at->top); for (i = 0; i < bt->top; i++) {