diff options
Diffstat (limited to 'src/lib/libcrypto/bn/bn_gcd.c')
-rw-r--r-- | src/lib/libcrypto/bn/bn_gcd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/bn/bn_gcd.c b/src/lib/libcrypto/bn/bn_gcd.c index e2574c3304..469ae752fb 100644 --- a/src/lib/libcrypto/bn/bn_gcd.c +++ b/src/lib/libcrypto/bn/bn_gcd.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bn_gcd.c,v 1.14 2017/01/25 06:15:44 beck Exp $ */ | 1 | /* $OpenBSD: bn_gcd.c,v 1.15 2017/01/29 17:49:22 beck Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -527,7 +527,7 @@ BN_mod_inverse_internal(BIGNUM *in, const BIGNUM *a, const BIGNUM *n, BN_CTX *ct | |||
527 | goto err; | 527 | goto err; |
528 | } | 528 | } |
529 | } else { | 529 | } else { |
530 | BNerr(BN_F_BN_MOD_INVERSE, BN_R_NO_INVERSE); | 530 | BNerror(BN_R_NO_INVERSE); |
531 | goto err; | 531 | goto err; |
532 | } | 532 | } |
533 | ret = R; | 533 | ret = R; |
@@ -709,7 +709,7 @@ BN_mod_inverse_no_branch(BIGNUM *in, const BIGNUM *a, const BIGNUM *n, | |||
709 | goto err; | 709 | goto err; |
710 | } | 710 | } |
711 | } else { | 711 | } else { |
712 | BNerr(BN_F_BN_MOD_INVERSE_NO_BRANCH, BN_R_NO_INVERSE); | 712 | BNerror(BN_R_NO_INVERSE); |
713 | goto err; | 713 | goto err; |
714 | } | 714 | } |
715 | ret = R; | 715 | ret = R; |