From: tb Date: Wed, 29 Mar 2023 07:38:16 +0000 (+0000) Subject: Fix printfs that escaped defensive grepping X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=1cb00aebad714ff3754ab504ba6f7c12461f9a64;p=openbsd Fix printfs that escaped defensive grepping --- 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);