diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-04-21 19:08:48 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-04-21 19:08:48 +0000 |
commit | dee115c909317666e1b5bf895ea728b1f8670524 (patch) | |
tree | 20108d75f38440ee39f62969c816c3f8f679c7cf /lib | |
parent | f4914fc43fa6e7340b3ba983c698f3efa83b7962 (diff) |
Unwrap a line
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/cms/cms_io.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libcrypto/cms/cms_io.c b/lib/libcrypto/cms/cms_io.c index 8a6b12e90fe..b06a5047c88 100644 --- a/lib/libcrypto/cms/cms_io.c +++ b/lib/libcrypto/cms/cms_io.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cms_io.c,v 1.12 2022/11/26 16:08:51 tb Exp $ */ +/* $OpenBSD: cms_io.c,v 1.13 2023/04/21 19:08:47 tb Exp $ */ /* * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project. @@ -123,8 +123,7 @@ PEM_write_CMS(FILE *fp, const CMS_ContentInfo *x) BIO * BIO_new_CMS(BIO *out, CMS_ContentInfo *cms) { - return BIO_new_NDEF(out, (ASN1_VALUE *)cms, - &CMS_ContentInfo_it); + return BIO_new_NDEF(out, (ASN1_VALUE *)cms, &CMS_ContentInfo_it); } /* CMS wrappers round generalised stream and MIME routines */ |