From 1cb00aebad714ff3754ab504ba6f7c12461f9a64 Mon Sep 17 00:00:00 2001 From: tb Date: Wed, 29 Mar 2023 07:38:16 +0000 Subject: [PATCH] Fix printfs that escaped defensive grepping --- regress/lib/libcrypto/bn/bn_mod_exp.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/regress/lib/libcrypto/bn/bn_mod_exp.c b/regress/lib/libcrypto/bn/bn_mod_exp.c index 0cd42a16d0a..804cdd26d40 100644 --- a/regress/lib/libcrypto/bn/bn_mod_exp.c +++ b/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); -- 2.20.1