diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-05-14 12:42:13 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-05-14 12:42:13 +0000 |
commit | 00b6d3eac9db51b03e0c3ce62e1a1d16f8a0d29b (patch) | |
tree | f2970f7dac27f674f54a8848fcffa2554af05fc8 /main/zlib/gzflush.patch | |
parent | 0ada67ec8947b79b168c1d717e5ccd939eb29f59 (diff) | |
download | aports-00b6d3eac9db51b03e0c3ce62e1a1d16f8a0d29b.tar.bz2 aports-00b6d3eac9db51b03e0c3ce62e1a1d16f8a0d29b.tar.xz |
main/zlib: header fixes
fixes cgit and possibly libxml2
Diffstat (limited to 'main/zlib/gzflush.patch')
-rw-r--r-- | main/zlib/gzflush.patch | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/main/zlib/gzflush.patch b/main/zlib/gzflush.patch deleted file mode 100644 index 5e97e6573..000000000 --- a/main/zlib/gzflush.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- a/gzwrite.c 2010-01-18 21:18:27.000000000 +0100 -+++ b/gzwrite.c 2010-01-28 04:37:20.330530306 +0100 -@@ -435,7 +435,8 @@ - state = (gz_statep)file; - - /* check that we're writing and that there's no error */ -- if (state->mode != GZ_WRITE|| state->err != Z_OK) -+ if (state->mode != GZ_WRITE || state->err != Z_OK) -+ return Z_STREAM_ERROR; - - /* check flush parameter */ - if (flush < 0 || flush > Z_FINISH) |