From e0c3aeb2d411ba02c94654c665c33921392d7f1c Mon Sep 17 00:00:00 2001 From: tb <> Date: Wed, 29 Mar 2023 07:38:16 +0000 Subject: Fix printfs that escaped defensive grepping --- src/regress/lib/libcrypto/bn/bn_mod_exp.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/regress/lib/libcrypto/bn/bn_mod_exp.c b/src/regress/lib/libcrypto/bn/bn_mod_exp.c index 0cd42a16d0..804cdd26d4 100644 --- a/src/regress/lib/libcrypto/bn/bn_mod_exp.c +++ b/src/regress/lib/libcrypto/bn/bn_mod_exp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bn_mod_exp.c,v 1.31 2023/03/29 07:29:11 tb Exp $ */ +/* $OpenBSD: bn_mod_exp.c,v 1.32 2023/03/29 07:38:16 tb Exp $ */ /* * Copyright (c) 2022,2023 Theo Buehler @@ -416,13 +416,13 @@ dump_exp2_results(const BIGNUM *a, const BIGNUM *p, const BIGNUM *b, printf("\ngot: "); BN_print_fp(stdout, got); - printf("\na1: "); + printf("\na: "); BN_print_fp(stdout, a); - printf("\np1: "); + printf("\np: "); BN_print_fp(stdout, p); - printf("\na2: "); + printf("\nb: "); BN_print_fp(stdout, b); - printf("\np2: "); + printf("\nq: "); BN_print_fp(stdout, q); printf("\nm: "); BN_print_fp(stdout, m); -- cgit v1.2.3-55-g6feb