View | Details | Raw Unified | Return to ticket 3299
Collapse All | Expand All

(-)a/src/bcast/file_bcast.c (-1 / +1 lines)
Lines 449-455 static int _bcast_file(struct bcast_parameters *params) Link Here
449
static int _decompress_data_zlib(file_bcast_msg_t *req)
449
static int _decompress_data_zlib(file_bcast_msg_t *req)
450
{
450
{
451
#if HAVE_LIBZ
451
#if HAVE_LIBZ
452
	static z_stream strm;
452
	z_stream strm;
453
	int chunk = (256 * 1024); /* must match common/file_bcast.c */
453
	int chunk = (256 * 1024); /* must match common/file_bcast.c */
454
	int ret;
454
	int ret;
455
	int flush = Z_NO_FLUSH, have;
455
	int flush = Z_NO_FLUSH, have;

Return to ticket 3299