diff options
author | tb <> | 2024-11-14 10:21:32 +0000 |
---|---|---|
committer | tb <> | 2024-11-14 10:21:32 +0000 |
commit | b74f0dcf8b7fb0cd9209ebfa1c5ca944937db584 (patch) | |
tree | 8aad6b4a626518efe8281a611f40fc192b1cf5d9 /src/lib | |
parent | 9b33962fef8e82c51592ac8863409f5c3bbfc418 (diff) | |
download | openbsd-b74f0dcf8b7fb0cd9209ebfa1c5ca944937db584.tar.gz openbsd-b74f0dcf8b7fb0cd9209ebfa1c5ca944937db584.tar.bz2 openbsd-b74f0dcf8b7fb0cd9209ebfa1c5ca944937db584.zip |
eck_prn: use group rather than x for an EC_GROUP
Diffstat (limited to 'src/lib')
-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 | ||