diff options
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 | ||