summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2022-08-15 13:29:06 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2022-08-15 13:29:06 +0000
commit2f26a82753c8213f14e5174a54132f1af09a179a (patch)
tree3535a5865455ff638e68d643940bb782f78e3e6d /sys
parent68aee794a0dffc54e1ec7eb1030cd88d7e61927e (diff)
Fix a doc comment to match upstream
Diffstat (limited to 'sys')
-rw-r--r--sys/lib/libz/zlib.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/lib/libz/zlib.h b/sys/lib/libz/zlib.h
index abf43aad07d..e1c5c681f10 100644
--- a/sys/lib/libz/zlib.h
+++ b/sys/lib/libz/zlib.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: zlib.h,v 1.16 2022/08/11 02:56:34 tb Exp $ */
+/* $OpenBSD: zlib.h,v 1.17 2022/08/15 13:29:05 tb Exp $ */
/* zlib.h -- interface of the 'zlib' general purpose compression library
version 1.2.12, March 11th, 2022
@@ -545,8 +545,7 @@ ZEXTERN int ZEXPORT deflateInit2 OF((z_streamp strm,
int strategy));
This is another version of deflateInit with more compression options. The
- fields next_in, zalloc, zfree and opaque must be initialized before by the
- caller.
+ fields zalloc, zfree and opaque must be initialized before by the caller.
The method parameter is the compression method. It must be Z_DEFLATED in
this version of the library.