summaryrefslogtreecommitdiffstats
path: root/crypto/pkcs7/enc.c
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-08-13 18:04:04 +0000
committerUlf Möller <ulf@openssl.org>1999-08-13 18:04:04 +0000
commit27ad06a62735702b9702a605086b155a20557c5f (patch)
tree312c065c30f098b0eef7ccf67452e475eb87b4d0 /crypto/pkcs7/enc.c
parentcab161c85f6ac468450d368eef6b61f8ed725da7 (diff)
Compile pkcs7 and des apps.
Diffstat (limited to 'crypto/pkcs7/enc.c')
-rw-r--r--crypto/pkcs7/enc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/pkcs7/enc.c b/crypto/pkcs7/enc.c
index 43bfd10a23..968c47726b 100644
--- a/crypto/pkcs7/enc.c
+++ b/crypto/pkcs7/enc.c
@@ -98,7 +98,8 @@ char *argv[];
argc-=2;
argv+=2;
if (!(in=BIO_new_file(keyfile,"r"))) goto err;
- if (!(x509=PEM_read_bio_X509(in,NULL,NULL))) goto err;
+ if (!(x509=PEM_read_bio_X509(in,NULL,NULL,NULL)))
+ goto err;
if(!recips) recips = sk_X509_new_null();
sk_X509_push(recips, x509);
BIO_free(in);