summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2024-07-24 08:57:58 +0000
committertb <>2024-07-24 08:57:58 +0000
commitc1aace74a96d0534102bebc3c55c284d3b9d0c03 (patch)
treed5ba54f5d5f69a519b985d28a0642808a61ac690 /src
parent4ac3cc5e9d33db106cc879530c07455c950fcf08 (diff)
downloadopenbsd-c1aace74a96d0534102bebc3c55c284d3b9d0c03.tar.gz
openbsd-c1aace74a96d0534102bebc3c55c284d3b9d0c03.tar.bz2
openbsd-c1aace74a96d0534102bebc3c55c284d3b9d0c03.zip
BUF_MEM_new.3: add a touch of KNF
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/man/BUF_MEM_new.37
1 files changed, 3 insertions, 4 deletions
diff --git a/src/lib/libcrypto/man/BUF_MEM_new.3 b/src/lib/libcrypto/man/BUF_MEM_new.3
index 3b2f20d217..8c72091abe 100644
--- a/src/lib/libcrypto/man/BUF_MEM_new.3
+++ b/src/lib/libcrypto/man/BUF_MEM_new.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: BUF_MEM_new.3,v 1.18 2023/07/27 06:20:45 tb Exp $ 1.\" $OpenBSD: BUF_MEM_new.3,v 1.19 2024/07/24 08:57:58 tb Exp $
2.\" OpenSSL doc/crypto/buffer.pod 18edda0f Sep 20 03:28:54 2000 +0000 2.\" OpenSSL doc/crypto/buffer.pod 18edda0f Sep 20 03:28:54 2000 +0000
3.\" not merged: 74924dcb, 58e3457a, 21b0fa91, 7644a9ae 3.\" not merged: 74924dcb, 58e3457a, 21b0fa91, 7644a9ae
4.\" OpenSSL doc/crypto/BUF_MEM_new.pod 53934822 Jun 9 16:39:19 2016 -0400 4.\" OpenSSL doc/crypto/BUF_MEM_new.pod 53934822 Jun 9 16:39:19 2016 -0400
@@ -52,7 +52,7 @@
52.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 52.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
53.\" OF THE POSSIBILITY OF SUCH DAMAGE. 53.\" OF THE POSSIBILITY OF SUCH DAMAGE.
54.\" 54.\"
55.Dd $Mdocdate: July 27 2023 $ 55.Dd $Mdocdate: July 24 2024 $
56.Dt BUF_MEM_NEW 3 56.Dt BUF_MEM_NEW 3
57.Os 57.Os
58.Sh NAME 58.Sh NAME
@@ -90,8 +90,7 @@ The library uses the
90.Vt BUF_MEM 90.Vt BUF_MEM
91structure defined in buffer.h: 91structure defined in buffer.h:
92.Bd -literal 92.Bd -literal
93typedef struct buf_mem_st 93typedef struct buf_mem_st {
94{
95 size_t length; /* current number of bytes */ 94 size_t length; /* current number of bytes */
96 char *data; 95 char *data;
97 size_t max; /* size of buffer */ 96 size_t max; /* size of buffer */