summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_gcd.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2007-04-19 15:14:39 +0000
committerBodo Möller <bodo@openssl.org>2007-04-19 15:14:39 +0000
commit22892f9803fb9b4b6d208b34580555120e852229 (patch)
treec2b58714940d712e75a65417da39ff40e7eb00a2 /crypto/bn/bn_gcd.c
parent27eb115fb606155dd6f4ce4e525bff3a9e51a1df (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;