summaryrefslogtreecommitdiffstats
path: root/crypto/pkcs7/sign.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/sign.c
parentcab161c85f6ac468450d368eef6b61f8ed725da7 (diff)
Compile pkcs7 and des apps.
Diffstat (limited to 'crypto/pkcs7/sign.c')
-rw-r--r--crypto/pkcs7/sign.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/pkcs7/sign.c b/crypto/pkcs7/sign.c
index d5f1154006..61dc2b187e 100644
--- a/crypto/pkcs7/sign.c
+++ b/crypto/pkcs7/sign.c
@@ -97,9 +97,9 @@ again:
BIO_set_fp(data,stdin,BIO_NOCLOSE);
if ((in=BIO_new_file("server.pem","r")) == NULL) goto err;
- if ((x509=PEM_read_bio_X509(in,NULL,NULL)) == NULL) goto err;
+ if ((x509=PEM_read_bio_X509(in,NULL,NULL,NULL)) == NULL) goto err;
BIO_reset(in);
- if ((pkey=PEM_read_bio_PrivateKey(in,NULL,NULL)) == NULL) goto err;
+ if ((pkey=PEM_read_bio_PrivateKey(in,NULL,NULL,NULL)) == NULL) goto err;
BIO_free(in);
p7=PKCS7_new();