From: Rajarshi Karmakar Date: Sat, 29 Apr 2023 07:27:57 +0000 (+0000) Subject: feature: openssl req -verify output to stderr instead of stdout #20728 X-Git-Tag: openssl-3.2.0-alpha1~916 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c154f537c34c80e42915f32e97c6ba90d9fd4037;p=thirdparty%2Fopenssl.git 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) --- 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) {