Home | History | Annotate | Download | only in savecore
History log of /src/sbin/savecore/zopen.c
RevisionDateAuthorComments
 1.4  10-Jan-2017  kamil Adapt funopen(3) call after switch to new zlib(3)

In the prototype of the gzclose() function of changed from:

typedef struct gzFile_s *gzFile; /* semi-opaque gzip file descriptor */

to:

typedef voidp gzFile;

This caused type mismatch when calling funopen(3) as:
'int (*)(void *)' != 'int (*)(struct gzFile_s *)'

Cast gzclose to (int (*)(void *)) when used in funopen(3).
 1.3  25-Dec-2012  mbalmer branches: 1.3.12;
Consistent use of return.
 1.2  27-Jun-2005  christos branches: 1.2.46; 1.2.52;
Move WARNS=3 to the Makefile.inc, and add a little const to the remaining
programs that did not compile before.
 1.1  02-Jan-2001  joda use gzip instead of compress
 1.2.52.1  25-Feb-2013  tls resync with head
 1.2.46.1  23-Jan-2013  yamt sync with head
 1.3.12.1  20-Mar-2017  pgoyette Sync with HEAD

RSS XML Feed