From 1b10e4e51860a4d118febcc8080461dbb727f082 Mon Sep 17 00:00:00 2001 From: tb Date: Sun, 26 Mar 2023 19:01:59 +0000 Subject: [PATCH] Fix a typo in dump_exp_results() --- regress/lib/libcrypto/bn/bn_mod_exp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/regress/lib/libcrypto/bn/bn_mod_exp.c b/regress/lib/libcrypto/bn/bn_mod_exp.c index 2fafb04a586..b9adadbd67a 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.20 2023/03/26 19:01:15 tb Exp $ */ +/* $OpenBSD: bn_mod_exp.c,v 1.21 2023/03/26 19:01:59 tb Exp $ */ /* * Copyright (c) 2022,2023 Theo Buehler @@ -354,7 +354,7 @@ dump_exp_results(const BIGNUM *a, const BIGNUM *p, const BIGNUM *m, printf("\na: "); BN_print_fp(stdout, a); - printf("\nb: "); + printf("\np: "); BN_print_fp(stdout, p); printf("\nm: "); BN_print_fp(stdout, m); -- 2.20.1