summaryrefslogtreecommitdiffstats
path: root/apps/s_client.c
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2021-04-28 12:51:49 +1000
committerShane Lontis <shane.lontis@oracle.com>2021-04-30 16:04:52 +1000
commite9d62da6c305d947530d91e412fdb21a8d8e3510 (patch)
tree85779474a2d93c84c351e697aed8627c269c2040 /apps/s_client.c
parent9ac653d81a857a5452f9f25278a24e1dfb226905 (diff)
Fix CRL app so that stdin works.
Fixes #15031 The maybe_stdin needed to be passed to load_key_certs_crls(). Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15058)
Diffstat (limited to 'apps/s_client.c')
-rw-r--r--apps/s_client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/s_client.c b/apps/s_client.c
index 7b3cf87620..dfc38b6659 100644
--- a/apps/s_client.c
+++ b/apps/s_client.c
@@ -1632,7 +1632,7 @@ int s_client_main(int argc, char **argv)
if (crl_file != NULL) {
X509_CRL *crl;
- crl = load_crl(crl_file, "CRL");
+ crl = load_crl(crl_file, 0, "CRL");
if (crl == NULL)
goto end;
crls = sk_X509_CRL_new_null();