summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/regress/lib/libcrypto/ec/ec_point_conversion.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/regress/lib/libcrypto/ec/ec_point_conversion.c b/src/regress/lib/libcrypto/ec/ec_point_conversion.c
index 2c15f38135..9bd78847da 100644
--- a/src/regress/lib/libcrypto/ec/ec_point_conversion.c
+++ b/src/regress/lib/libcrypto/ec/ec_point_conversion.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ec_point_conversion.c,v 1.3 2021/05/03 14:48:10 tb Exp $ */ 1/* $OpenBSD: ec_point_conversion.c,v 1.4 2021/05/03 14:49:37 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2021 Theo Buehler <tb@openbsd.org> 3 * Copyright (c) 2021 Theo Buehler <tb@openbsd.org>
4 * Copyright (c) 2021 Joel Sing <jsing@openbsd.org> 4 * Copyright (c) 2021 Joel Sing <jsing@openbsd.org>
@@ -110,7 +110,7 @@ roundtrip(EC_GROUP *group, EC_POINT *point, int form, BIGNUM *x, BIGNUM *y)
110} 110}
111 111
112static int 112static int
113hybrid_corner_case(void) 113test_hybrid_corner_case(void)
114{ 114{
115 BIGNUM *x = NULL, *y = NULL; 115 BIGNUM *x = NULL, *y = NULL;
116 EC_GROUP *group; 116 EC_GROUP *group;
@@ -879,7 +879,7 @@ main(int argc, char **argv)
879 int failed = 0; 879 int failed = 0;
880 880
881 failed |= test_random_points(); 881 failed |= test_random_points();
882 failed |= hybrid_corner_case(); 882 failed |= test_hybrid_corner_case();
883 failed |= test_point_conversions(); 883 failed |= test_point_conversions();
884 884
885 fprintf(stderr, "%s\n", failed ? "FAILED" : "SUCCESS"); 885 fprintf(stderr, "%s\n", failed ? "FAILED" : "SUCCESS");