diff options
author | Tomas Mraz <tomas@openssl.org> | 2021-03-05 21:05:35 +0100 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2021-03-15 13:29:57 +0100 |
commit | ea51096e51571b0dfe1e9e63661ad6f62ce0d82a (patch) | |
tree | 58e1c359aaa08b76d7abf971e6c97d009da0e1b7 /apps/smime.c | |
parent | Tiny clarification of comment for RSA_sign (diff) | |
download | openssl-ea51096e51571b0dfe1e9e63661ad6f62ce0d82a.tar.xz openssl-ea51096e51571b0dfe1e9e63661ad6f62ce0d82a.zip |
apps: Add maybe_stdin argument to load_certs and set it in pkcs12
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/14449)
Diffstat (limited to 'apps/smime.c')
-rw-r--r-- | apps/smime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/smime.c b/apps/smime.c index 63578f28d5..dcef6b3b49 100644 --- a/apps/smime.c +++ b/apps/smime.c @@ -457,7 +457,7 @@ int smime_main(int argc, char **argv) } if (certfile != NULL) { - if (!load_certs(certfile, &other, NULL, "certificates")) { + if (!load_certs(certfile, 0, &other, NULL, "certificates")) { ERR_print_errors(bio_err); goto end; } |