summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2023-10-19 10:30:15 +0200
committerTomas Mraz <tomas@openssl.org>2023-10-19 10:30:15 +0200
commit307048cd4e887de688eb71af713c64962261cd29 (patch)
treec59e91904f5077a655592a920846fc109eb297c2
parentc16c5beb281ae8e9671a9dc748d87a107636004e (diff)
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 <matt@openssl.org> Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22434)
-rw-r--r--apps/lib/apps.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/lib/apps.c b/apps/lib/apps.c
index 69f21380a5..1554364aac 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;
}