CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2022/07/20 05:35:36
Modified files: lib/libz : zlib.h Log message: Revert zlib.h r1.7 The change from uLong to z_off_t was made due to a bug in gzip(1) which was fixed by gkoehler in gzopen.c r1.35. The trouble with the z_off_t change is that it is an ABI break and that it does not play well with various ffi interfaces. For example, Perl and Rust break on ILP32 arches with the system zlib. Run through an i386 bulk by sthen and an i386 regress by bluhm, thanks. ok bluhm