From 307048cd4e887de688eb71af713c64962261cd29 Mon Sep 17 00:00:00 2001 From: Tomas Mraz Date: Thu, 19 Oct 2023 10:30:15 +0200 Subject: [PATCH] load_key_certs_crls(): There is no quiet argument This fixes broken cherry-pick from the master branch where there is a quiet argument. Reviewed-by: Matt Caswell Reviewed-by: Tom Cosgrove Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/22434) --- apps/lib/apps.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/apps/lib/apps.c b/apps/lib/apps.c index 69f21380a5d..1554364aac8 100644 --- a/apps/lib/apps.c +++ b/apps/lib/apps.c @@ -957,13 +957,11 @@ int load_key_certs_crls(const char *uri, int format, int maybe_stdin, params, NULL, NULL); } if (ctx == NULL) { - if (!quiet) - BIO_printf(bio_err, "Could not open file or uri for loading"); + BIO_printf(bio_err, "Could not open file or uri for loading"); goto end; } if (expect > 0 && !OSSL_STORE_expect(ctx, expect)) { - if (!quiet) - BIO_printf(bio_err, "Internal error trying to load"); + BIO_printf(bio_err, "Internal error trying to load"); goto end; } -- 2.47.2