summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorDaniel <daniel@openssl.org>2022-02-06 15:01:14 +0100
committerPauli <pauli@openssl.org>2022-02-09 10:37:19 +1100
commit2a6994cfa08368a710d66caaae4fc07ad35631bf (patch)
tree156c0c17e388f7696d455daea5d79ddef8f1cfe7 /apps
parentaefbcde29166caf851cf388361d70fd0dcf17d87 (diff)
Send auxiliary messages to bio_err.
Fixes openssl#17613. Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/17650)
Diffstat (limited to 'apps')
-rw-r--r--apps/x509.c4
1 files changed, 2 insertions, 2 deletions
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");
}