From: Tomas Mraz Date: Thu, 19 Oct 2023 08:30:15 +0000 (+0200) Subject: load_key_certs_crls(): There is no quiet argument X-Git-Tag: openssl-3.1.4~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=307048cd4e887de688eb71af713c64962261cd29;p=thirdparty%2Fopenssl.git 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) --- 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; }