summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/libcrypto/pkcs7/pk7_mime.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/libcrypto/pkcs7/pk7_mime.c b/src/lib/libcrypto/pkcs7/pk7_mime.c
index 68767db7ce..48fa79979d 100644
--- a/src/lib/libcrypto/pkcs7/pk7_mime.c
+++ b/src/lib/libcrypto/pkcs7/pk7_mime.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: pk7_mime.c,v 1.17 2023/04/26 14:25:58 tb Exp $ */ 1/* $OpenBSD: pk7_mime.c,v 1.18 2023/05/02 09:38:33 tb Exp $ */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project. 3 * project.
4 */ 4 */
@@ -71,8 +71,7 @@ LCRYPTO_ALIAS(BIO_new_PKCS7);
71int 71int
72i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags) 72i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags)
73{ 73{
74 return i2d_ASN1_bio_stream(out, (ASN1_VALUE *)p7, in, flags, 74 return i2d_ASN1_bio_stream(out, (ASN1_VALUE *)p7, in, flags, &PKCS7_it);
75 &PKCS7_it);
76} 75}
77LCRYPTO_ALIAS(i2d_PKCS7_bio_stream); 76LCRYPTO_ALIAS(i2d_PKCS7_bio_stream);
78 77