diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-07-24 08:57:59 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-07-24 08:57:59 +0000 |
commit | 9feb05cd829584985f328ceae6e2612593af5ab0 (patch) | |
tree | 923b4e1c6beefe84085f0416381ffa53f850f9e8 | |
parent | c802723471fbdfcd310f9b732adeb228373f53d9 (diff) |
BUF_MEM_new.3: add a touch of KNF
-rw-r--r-- | lib/libcrypto/man/BUF_MEM_new.3 | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/libcrypto/man/BUF_MEM_new.3 b/lib/libcrypto/man/BUF_MEM_new.3 index 3b2f20d2172..8c72091abe5 100644 --- a/lib/libcrypto/man/BUF_MEM_new.3 +++ b/lib/libcrypto/man/BUF_MEM_new.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: BUF_MEM_new.3,v 1.18 2023/07/27 06:20:45 tb Exp $ +.\" $OpenBSD: BUF_MEM_new.3,v 1.19 2024/07/24 08:57:58 tb Exp $ .\" OpenSSL doc/crypto/buffer.pod 18edda0f Sep 20 03:28:54 2000 +0000 .\" not merged: 74924dcb, 58e3457a, 21b0fa91, 7644a9ae .\" OpenSSL doc/crypto/BUF_MEM_new.pod 53934822 Jun 9 16:39:19 2016 -0400 @@ -52,7 +52,7 @@ .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED .\" OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: July 27 2023 $ +.Dd $Mdocdate: July 24 2024 $ .Dt BUF_MEM_NEW 3 .Os .Sh NAME @@ -90,8 +90,7 @@ The library uses the .Vt BUF_MEM structure defined in buffer.h: .Bd -literal -typedef struct buf_mem_st -{ +typedef struct buf_mem_st { size_t length; /* current number of bytes */ char *data; size_t max; /* size of buffer */ |