summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2024-11-14 10:21:33 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2024-11-14 10:21:33 +0000
commite77c71dec9f0a02267aa680855143ceb0d9b3dac (patch)
treedd9951a39e21a117bf87cfaa9b272620dcd24aa2 /lib
parentdbc6665e21d715ee0c256499ff1fd67914424418 (diff)
eck_prn: use group rather than x for an EC_GROUP
Diffstat (limited to 'lib')
-rw-r--r--lib/libcrypto/ec/eck_prn.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcrypto/ec/eck_prn.c b/lib/libcrypto/ec/eck_prn.c
index 5fbe21e083c..eadf1d92e39 100644
--- a/lib/libcrypto/ec/eck_prn.c
+++ b/lib/libcrypto/ec/eck_prn.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: eck_prn.c,v 1.35 2024/11/14 10:20:17 tb Exp $ */
+/* $OpenBSD: eck_prn.c,v 1.36 2024/11/14 10:21:32 tb Exp $ */
/*
* Written by Nils Larsch for the OpenSSL project.
*/
@@ -334,7 +334,7 @@ ECPKParameters_print(BIO *bio, const EC_GROUP *group, int off)
LCRYPTO_ALIAS(ECPKParameters_print);
int
-ECPKParameters_print_fp(FILE *fp, const EC_GROUP *x, int off)
+ECPKParameters_print_fp(FILE *fp, const EC_GROUP *group, int off)
{
BIO *bio;
int ret;
@@ -346,7 +346,7 @@ ECPKParameters_print_fp(FILE *fp, const EC_GROUP *x, int off)
BIO_set_fp(bio, fp, BIO_NOCLOSE);
- ret = ECPKParameters_print(bio, x, off);
+ ret = ECPKParameters_print(bio, group, off);
BIO_free(bio);