summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorRajarshi Karmakar <rkarmaka98@gmail.com>2023-04-29 07:27:57 +0000
committerPauli <pauli@openssl.org>2023-05-04 11:58:36 +1000
commitc154f537c34c80e42915f32e97c6ba90d9fd4037 (patch)
treeb2b063e158b6270884f0ce81c69645efc31c7fd6 /apps
parent010333be5362a07508888124c83efac35b28760f (diff)
downloadopenssl-new-c154f537c34c80e42915f32e97c6ba90d9fd4037.tar.gz
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)
Diffstat (limited to 'apps')
-rw-r--r--apps/req.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/req.c b/apps/req.c
index 649ba99f0b..f24101cefa 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) {