From: tb Date: Fri, 21 Apr 2023 20:08:23 +0000 (+0000) Subject: Rewrap some lines. No binary change X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=ef20b2495a0ddaa5ea0b7d1f58b3e08a68f92279;p=openbsd Rewrap some lines. No binary change --- diff --git a/lib/libcrypto/cms/cms_io.c b/lib/libcrypto/cms/cms_io.c index b06a5047c88..c8c4791d28c 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.13 2023/04/21 19:08:47 tb Exp $ */ +/* $OpenBSD: cms_io.c,v 1.14 2023/04/21 20:08:23 tb Exp $ */ /* * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project. @@ -95,29 +95,29 @@ i2d_CMS_bio(BIO *bp, CMS_ContentInfo *cms) CMS_ContentInfo * PEM_read_bio_CMS(BIO *bp, CMS_ContentInfo **x, pem_password_cb *cb, void *u) { - return PEM_ASN1_read_bio((d2i_of_void *)d2i_CMS_ContentInfo, PEM_STRING_CMS, bp, - (void **)x, cb, u); + return PEM_ASN1_read_bio((d2i_of_void *)d2i_CMS_ContentInfo, + PEM_STRING_CMS, bp, (void **)x, cb, u); } CMS_ContentInfo * PEM_read_CMS(FILE *fp, CMS_ContentInfo **x, pem_password_cb *cb, void *u) { - return PEM_ASN1_read((d2i_of_void *)d2i_CMS_ContentInfo, PEM_STRING_CMS, fp, - (void **)x, cb, u); + return PEM_ASN1_read((d2i_of_void *)d2i_CMS_ContentInfo, + PEM_STRING_CMS, fp, (void **)x, cb, u); } int PEM_write_bio_CMS(BIO *bp, const CMS_ContentInfo *x) { - return PEM_ASN1_write_bio((i2d_of_void *)i2d_CMS_ContentInfo, PEM_STRING_CMS, bp, - (void *)x, NULL, NULL, 0, NULL, NULL); + return PEM_ASN1_write_bio((i2d_of_void *)i2d_CMS_ContentInfo, + PEM_STRING_CMS, bp, (void *)x, NULL, NULL, 0, NULL, NULL); } int PEM_write_CMS(FILE *fp, const CMS_ContentInfo *x) { - return PEM_ASN1_write((i2d_of_void *)i2d_CMS_ContentInfo, PEM_STRING_CMS, fp, - (void *)x, NULL, NULL, 0, NULL, NULL); + return PEM_ASN1_write((i2d_of_void *)i2d_CMS_ContentInfo, + PEM_STRING_CMS, fp, (void *)x, NULL, NULL, 0, NULL, NULL); } BIO * @@ -131,7 +131,7 @@ BIO_new_CMS(BIO *out, CMS_ContentInfo *cms) int i2d_CMS_bio_stream(BIO *out, CMS_ContentInfo *cms, BIO *in, int flags) { return i2d_ASN1_bio_stream(out, (ASN1_VALUE *)cms, in, flags, - &CMS_ContentInfo_it); + &CMS_ContentInfo_it); } int