summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_gcd.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2007-04-19 15:14:21 +0000
committerBodo Möller <bodo@openssl.org>2007-04-19 15:14:21 +0000
commit24a8c25ab5a91b4cf467aef1af3dcc474b1c7df2 (patch)
tree6bd7f5715769738d53af378dda42d21cde8cb7a9 /crypto/bn/bn_gcd.c
parentd1e7d1d96cbec34a44449e19433b5fe7d748e06a (diff)
fix error codes
Diffstat (limited to 'crypto/bn/bn_gcd.c')
-rw-r--r--crypto/bn/bn_gcd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_gcd.c b/crypto/bn/bn_gcd.c
index 5fb8090c52..85e4b50c10 100644
--- a/crypto/bn/bn_gcd.c
+++ b/crypto/bn/bn_gcd.c
@@ -640,7 +640,7 @@ BIGNUM *BN_mod_inverse_no_branch(BIGNUM *in,
}
else
{
- BNerr(BN_F_BN_MOD_INVERSE,BN_R_NO_INVERSE);
+ BNerr(BN_F_BN_MOD_INVERSE_NO_BRANCH,BN_R_NO_INVERSE);
goto err;
}
ret=R;