From: tb Date: Sun, 26 Mar 2023 19:01:59 +0000 (+0000) Subject: Fix a typo in dump_exp_results() X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=1b10e4e51860a4d118febcc8080461dbb727f082;p=openbsd Fix a typo in dump_exp_results() --- 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);