diff options
| author | tb <> | 2024-11-14 10:21:32 +0000 |
|---|---|---|
| committer | tb <> | 2024-11-14 10:21:32 +0000 |
| commit | 0447ec0611fb5ea70a4d29dab617e14f2cd5ed33 (patch) | |
| tree | 8aad6b4a626518efe8281a611f40fc192b1cf5d9 /src/lib/libc | |
| parent | be8a73922de755b9d8f882867f48699ff3f0477a (diff) | |
| download | openbsd-0447ec0611fb5ea70a4d29dab617e14f2cd5ed33.tar.gz openbsd-0447ec0611fb5ea70a4d29dab617e14f2cd5ed33.tar.bz2 openbsd-0447ec0611fb5ea70a4d29dab617e14f2cd5ed33.zip | |
eck_prn: use group rather than x for an EC_GROUP
Diffstat (limited to '')
| -rw-r--r-- | src/lib/libcrypto/ec/eck_prn.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/ec/eck_prn.c b/src/lib/libcrypto/ec/eck_prn.c index 5fbe21e083..eadf1d92e3 100644 --- a/src/lib/libcrypto/ec/eck_prn.c +++ b/src/lib/libcrypto/ec/eck_prn.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: eck_prn.c,v 1.35 2024/11/14 10:20:17 tb Exp $ */ | 1 | /* $OpenBSD: eck_prn.c,v 1.36 2024/11/14 10:21:32 tb Exp $ */ |
| 2 | /* | 2 | /* |
| 3 | * Written by Nils Larsch for the OpenSSL project. | 3 | * Written by Nils Larsch for the OpenSSL project. |
| 4 | */ | 4 | */ |
| @@ -334,7 +334,7 @@ ECPKParameters_print(BIO *bio, const EC_GROUP *group, int off) | |||
| 334 | LCRYPTO_ALIAS(ECPKParameters_print); | 334 | LCRYPTO_ALIAS(ECPKParameters_print); |
| 335 | 335 | ||
| 336 | int | 336 | int |
| 337 | ECPKParameters_print_fp(FILE *fp, const EC_GROUP *x, int off) | 337 | ECPKParameters_print_fp(FILE *fp, const EC_GROUP *group, int off) |
| 338 | { | 338 | { |
| 339 | BIO *bio; | 339 | BIO *bio; |
| 340 | int ret; | 340 | int ret; |
| @@ -346,7 +346,7 @@ ECPKParameters_print_fp(FILE *fp, const EC_GROUP *x, int off) | |||
| 346 | 346 | ||
| 347 | BIO_set_fp(bio, fp, BIO_NOCLOSE); | 347 | BIO_set_fp(bio, fp, BIO_NOCLOSE); |
| 348 | 348 | ||
| 349 | ret = ECPKParameters_print(bio, x, off); | 349 | ret = ECPKParameters_print(bio, group, off); |
| 350 | 350 | ||
| 351 | BIO_free(bio); | 351 | BIO_free(bio); |
| 352 | 352 | ||
