From c154f537c34c80e42915f32e97c6ba90d9fd4037 Mon Sep 17 00:00:00 2001 From: Rajarshi Karmakar Date: Sat, 29 Apr 2023 07:27:57 +0000 Subject: [PATCH] feature: openssl req -verify output to stderr instead of stdout #20728 Reviewed-by: Tom Cosgrove Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/20858) --- apps/req.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/req.c b/apps/req.c index 649ba99f0b0..f24101cefae 100644 --- a/apps/req.c +++ b/apps/req.c @@ -937,7 +937,7 @@ int req_main(int argc, char **argv) if (i == 0) BIO_printf(bio_err, "Certificate request self-signature verify failure\n"); else /* i > 0 */ - BIO_printf(bio_err, "Certificate request self-signature verify OK\n"); + BIO_printf(bio_out, "Certificate request self-signature verify OK\n"); } if (noout && !text && !modulus && !subject && !pubkey) { -- 2.47.2