From 2a6994cfa08368a710d66caaae4fc07ad35631bf Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 6 Feb 2022 15:01:14 +0100 Subject: Send auxiliary messages to bio_err. Fixes openssl#17613. Reviewed-by: Tomas Mraz Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/17650) --- apps/x509.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/x509.c b/apps/x509.c index 29dc74ca9e..f62f809a9c 100644 --- a/apps/x509.c +++ b/apps/x509.c @@ -711,9 +711,9 @@ int x509_main(int argc, char **argv) : "Certificate request self-signature did not match the contents\n"); goto err; } - BIO_printf(out, "Certificate request self-signature ok\n"); + BIO_printf(bio_err, "Certificate request self-signature ok\n"); - print_name(out, "subject=", X509_REQ_get_subject_name(req)); + print_name(bio_err, "subject=", X509_REQ_get_subject_name(req)); } else if (!x509toreq && ext_copy != EXT_COPY_UNSET) { BIO_printf(bio_err, "Warning: ignoring -copy_extensions since neither -x509toreq nor -req is given\n"); } -- cgit v1.2.3