From 49f07be43d031f0407db8ae1b8cdf6452a79e558 Mon Sep 17 00:00:00 2001 From: "Dr. David von Oheimb" Date: Sat, 13 Mar 2021 11:29:19 +0100 Subject: [PATCH] apps.c: Fix missing newline in warn_cert_msg() output Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/14503) --- apps/lib/apps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/lib/apps.c b/apps/lib/apps.c index f992eab053c..61b3ebc6dec 100644 --- a/apps/lib/apps.c +++ b/apps/lib/apps.c @@ -661,7 +661,7 @@ static void warn_cert_msg(const char *uri, X509 *cert, const char *msg) { char *subj = X509_NAME_oneline(X509_get_subject_name(cert), NULL, 0); - BIO_printf(bio_err, "Warning: certificate from '%s' with subject '%s' %s", + BIO_printf(bio_err, "Warning: certificate from '%s' with subject '%s' %s\n", uri, subj, msg); OPENSSL_free(subj); } -- 2.47.2