X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=netbsd-1.1%2Fppp-deflate.c;h=697cac6a78754f7988e49a7202b4a47148d5b72c;hp=9328b253858db57927e2f310b499d4773e550097;hb=a97726dbc8114d8f04245be0556af0c16104b911;hpb=2b9f50b54f3f28821d53fec2743cec36d9d34124 diff --git a/netbsd-1.1/ppp-deflate.c b/netbsd-1.1/ppp-deflate.c index 9328b25..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.5 1997/03/04 03:33:28 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 @@ -148,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) { @@ -379,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);