summaryrefslogtreecommitdiffstats
path: root/apps/include
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/include
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/include')
-rw-r--r--apps/include/apps.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/include/apps.h b/apps/include/apps.h
index 2d102246f8..9532d396eb 100644
--- a/apps/include/apps.h
+++ b/apps/include/apps.h
@@ -111,7 +111,7 @@ X509_REQ *load_csr(const char *file, int format, const char *desc);
X509 *load_cert_pass(const char *uri, int maybe_stdin,
const char *pass, const char *desc);
#define load_cert(uri, desc) load_cert_pass(uri, 1, NULL, desc)
-X509_CRL *load_crl(const char *uri, const char *desc);
+X509_CRL *load_crl(const char *uri, int maybe_stdin, const char *desc);
void cleanse(char *str);
void clear_free(char *str);
EVP_PKEY *load_key(const char *uri, int format, int maybe_stdin,