From: espie Date: Tue, 4 Oct 2022 15:31:02 +0000 (+0000) Subject: fix an obvious thinko without serious consequences in the display of e X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=e856d5e6cc8ed890b8985173568e2f31add5373b;p=openbsd fix an obvious thinko without serious consequences in the display of e for rsa and friends. okay tb@ --- diff --git a/usr.bin/openssl/genrsa.c b/usr.bin/openssl/genrsa.c index a199ba2e452..647b691e7f0 100644 --- a/usr.bin/openssl/genrsa.c +++ b/usr.bin/openssl/genrsa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: genrsa.c,v 1.19 2022/01/14 09:25:42 tb Exp $ */ +/* $OpenBSD: genrsa.c,v 1.20 2022/10/04 15:31:02 espie Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -346,7 +346,7 @@ genrsa_main(int argc, char **argv) if ((rsa_e_dec = BN_bn2dec(RSA_get0_e(rsa))) == NULL) goto err; - BIO_printf(bio_err, "e is %s (0x%s)\n", rsa_e_hex, rsa_e_dec); + BIO_printf(bio_err, "e is %s (0x%s)\n", rsa_e_dec, rsa_e_hex); { PW_CB_DATA cb_data; cb_data.password = passout;