X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=netbsd-1.1%2Fppp-deflate.c;h=697cac6a78754f7988e49a7202b4a47148d5b72c;hp=6470235a9c803e67572f0c9b80f79bb8dd1c006b;hb=192a503e77660bc6788544a402f2c4048a97ccab;hpb=21cdaec64fc3385795f4318fdf2358f503ec26ba diff --git a/netbsd-1.1/ppp-deflate.c b/netbsd-1.1/ppp-deflate.c index 6470235..697cac6 100644 --- a/netbsd-1.1/ppp-deflate.c +++ b/netbsd-1.1/ppp-deflate.c @@ -1,4 +1,4 @@ -/* $Id: ppp-deflate.c,v 1.4 1996/10/08 04:38:06 paulus Exp $ */ +/* $Id: ppp-deflate.c,v 1.6 1997/04/30 05:47:23 paulus Exp $ */ /* * ppp_deflate.c - interface the zlib procedures for Deflate compression @@ -41,10 +41,6 @@ #if DO_DEFLATE -#ifdef FreeBSD -#define inflate inflate_ppp /* FreeBSD already has an inflate :-( */ -#endif - #define DEFLATE_DEBUG 1 /* @@ -152,6 +148,7 @@ z_comp_alloc(options, opt_len) state->strm.next_in = NULL; state->strm.zalloc = zalloc; + state->strm.zalloc_init = zalloc; state->strm.zfree = zfree; if (deflateInit2(&state->strm, Z_DEFAULT_COMPRESSION, DEFLATE_METHOD_VAL, -w_size, 8, Z_DEFAULT_STRATEGY, DEFLATE_OVHD+2) != Z_OK) { @@ -383,6 +380,7 @@ z_decomp_alloc(options, opt_len) state->strm.next_out = NULL; state->strm.zalloc = zalloc; + state->strm.zalloc_init = zalloc; state->strm.zfree = zfree; if (inflateInit2(&state->strm, -w_size) != Z_OK) { FREE(state, M_DEVBUF);