From e5164b704117967f4b7f23aeb5bf5d5b181764e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bodo=20M=C3=B6ller?= Date: Mon, 4 Dec 2000 09:24:54 +0000 Subject: Change error message to "bignum too long" --- crypto/bn/bn_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crypto/bn/bn_lib.c') diff --git a/crypto/bn/bn_lib.c b/crypto/bn/bn_lib.c index c71f0b0863..e37b85bfc5 100644 --- a/crypto/bn/bn_lib.c +++ b/crypto/bn/bn_lib.c @@ -315,7 +315,7 @@ static BN_ULONG *bn_expand_internal(const BIGNUM *b, int words) if (words > (INT_MAX/(4*BN_BITS2))) { - BNerr(BN_F_BN_EXPAND_INTERNAL,BN_R_TOO_LARGE); + BNerr(BN_F_BN_EXPAND_INTERNAL,BN_R_BIGNUM_TOO_LONG); return NULL; } -- cgit v1.2.3