feature: openssl req -verify output to stderr instead of stdout #20728

Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/20858)
This commit is contained in:
Rajarshi Karmakar 2023-04-29 07:27:57 +00:00 committed by Pauli
parent 010333be53
commit c154f537c3

View File

@ -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) {