diff options
author | Bodo Möller <bodo@openssl.org> | 1999-07-21 22:57:16 +0200 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 1999-07-21 22:57:16 +0200 |
commit | 74678cc2f8132ad34f7c33731c4765cf3083de8c (patch) | |
tree | da0cd26e2c32fc9b0bf540be33964282b4a5ed9d /apps/crl2p7.c | |
parent | avoid -DPLATFORM=\"...\" and -DCFLAGS=\"...\" command lines, (diff) | |
download | openssl-74678cc2f8132ad34f7c33731c4765cf3083de8c.tar.xz openssl-74678cc2f8132ad34f7c33731c4765cf3083de8c.zip |
Additional user data argument to pem_password_cb function type
and to lots of PEM_... functions.
Submitted by: Damien Miller <dmiller@ilogic.com.au>
Diffstat (limited to 'apps/crl2p7.c')
-rw-r--r-- | apps/crl2p7.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/crl2p7.c b/apps/crl2p7.c index f4b216f68b..8634e3a1ec 100644 --- a/apps/crl2p7.c +++ b/apps/crl2p7.c @@ -193,7 +193,7 @@ bad: if (informat == FORMAT_ASN1) crl=d2i_X509_CRL_bio(in,NULL); else if (informat == FORMAT_PEM) - crl=PEM_read_bio_X509_CRL(in,NULL,NULL); + crl=PEM_read_bio_X509_CRL(in,NULL,NULL,NULL); else { BIO_printf(bio_err,"bad input format specified for input crl\n"); goto end; @@ -304,7 +304,7 @@ static int add_certs_from_file(STACK_OF(X509) *stack, char *certfile) } /* This loads from a file, a stack of x509/crl/pkey sets */ - sk=PEM_X509_INFO_read_bio(in,NULL,NULL); + sk=PEM_X509_INFO_read_bio(in,NULL,NULL,NULL); if (sk == NULL) { BIO_printf(bio_err,"error reading the file, %s\n",certfile); goto end; |