diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/libcrypto/bn/bn_gf2m.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/bn/bn_gf2m.c b/src/lib/libcrypto/bn/bn_gf2m.c index c90c9f64de..3a0accb4a2 100644 --- a/src/lib/libcrypto/bn/bn_gf2m.c +++ b/src/lib/libcrypto/bn/bn_gf2m.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: bn_gf2m.c,v 1.30 2023/03/27 08:49:34 tb Exp $ */ | 1 | /* $OpenBSD: bn_gf2m.c,v 1.31 2023/03/27 10:20:27 tb Exp $ */ |
| 2 | /* ==================================================================== | 2 | /* ==================================================================== |
| 3 | * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. | 3 | * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. |
| 4 | * | 4 | * |
| @@ -967,7 +967,7 @@ BN_GF2m_mod_exp_arr(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const int p[], | |||
| 967 | return BN_one(r); | 967 | return BN_one(r); |
| 968 | 968 | ||
| 969 | if (BN_abs_is_word(b, 1)) | 969 | if (BN_abs_is_word(b, 1)) |
| 970 | return BN_copy(r, a) != NULL; | 970 | return bn_copy(r, a); |
| 971 | 971 | ||
| 972 | BN_CTX_start(ctx); | 972 | BN_CTX_start(ctx); |
| 973 | if ((u = BN_CTX_get(ctx)) == NULL) | 973 | if ((u = BN_CTX_get(ctx)) == NULL) |
