summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/regress/lib/libcrypto/ec/ec_point_conversion.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/ec/ec_point_conversion.c b/src/regress/lib/libcrypto/ec/ec_point_conversion.c
index 221bfc6456..8327ac4336 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.5 2021/05/03 14:51:47 tb Exp $ */ 1/* $OpenBSD: ec_point_conversion.c,v 1.6 2021/12/29 22:48:09 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>
@@ -227,7 +227,7 @@ test_random_points(void)
227 EC_get_builtin_curves(all_curves, ncurves); 227 EC_get_builtin_curves(all_curves, ncurves);
228 228
229 for (curve_id = 0; curve_id < ncurves; curve_id++) 229 for (curve_id = 0; curve_id < ncurves; curve_id++)
230 test_random_points_on_curve(&all_curves[curve_id]); 230 failed |= test_random_points_on_curve(&all_curves[curve_id]);
231 231
232 fprintf(stderr, "%s: %s\n", __func__, failed ? "FAILED" : "SUCCESS"); 232 fprintf(stderr, "%s: %s\n", __func__, failed ? "FAILED" : "SUCCESS");
233 233