diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-05-02 09:38:34 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-05-02 09:38:34 +0000 |
commit | 65d2ffe26f8c2145c88e78383cb9819141af4e27 (patch) | |
tree | c7dcead272567492b01e2422f2e866408e06b8dd /lib | |
parent | f903b302c64ac809a7c2b5f64170499e2d8de13e (diff) |
Unwrap a line
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/pkcs7/pk7_mime.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libcrypto/pkcs7/pk7_mime.c b/lib/libcrypto/pkcs7/pk7_mime.c index 68767db7ce3..48fa79979d4 100644 --- a/lib/libcrypto/pkcs7/pk7_mime.c +++ b/lib/libcrypto/pkcs7/pk7_mime.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pk7_mime.c,v 1.17 2023/04/26 14:25:58 tb Exp $ */ +/* $OpenBSD: pk7_mime.c,v 1.18 2023/05/02 09:38:33 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project. */ @@ -71,8 +71,7 @@ LCRYPTO_ALIAS(BIO_new_PKCS7); int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags) { - return i2d_ASN1_bio_stream(out, (ASN1_VALUE *)p7, in, flags, - &PKCS7_it); + return i2d_ASN1_bio_stream(out, (ASN1_VALUE *)p7, in, flags, &PKCS7_it); } LCRYPTO_ALIAS(i2d_PKCS7_bio_stream); |