summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_lib.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-12-04 09:24:54 +0000
committerBodo Möller <bodo@openssl.org>2000-12-04 09:24:54 +0000
commite5164b704117967f4b7f23aeb5bf5d5b181764e6 (patch)
treea9b46354a3395b8fc02756d81aa421211cca1f19 /crypto/bn/bn_lib.c
parentebff44b83a93eb86fc0fc3ef2b394b683ca4308b (diff)
Change error message to "bignum too long"
Diffstat (limited to 'crypto/bn/bn_lib.c')
-rw-r--r--crypto/bn/bn_lib.c2
1 files changed, 1 insertions, 1 deletions
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;
}