Skip to Content.
Sympa Menu

ndt-dev - [ndt-dev] [ndt] r1181 committed - Issue36: Created archives are now in proper gzip format

Subject: NDT-DEV email list created

List archive

[ndt-dev] [ndt] r1181 committed - Issue36: Created archives are now in proper gzip format


Chronological Thread 
  • From:
  • To:
  • Subject: [ndt-dev] [ndt] r1181 committed - Issue36: Created archives are now in proper gzip format
  • Date: Mon, 16 Feb 2015 13:16:47 +0000

Revision: 1181
Author:

Date: Mon Feb 16 13:16:35 2015 UTC
Log: Issue36: Created archives are now in proper gzip format
https://code.google.com/p/ndt/source/detail?r=1181

Modified:
/branches/Issue36/src/logging.c

=======================================
--- /branches/Issue36/src/logging.c Mon Oct 14 13:20:21 2013 UTC
+++ /branches/Issue36/src/logging.c Mon Feb 16 13:16:35 2015 UTC
@@ -71,7 +71,7 @@
strm.zalloc = Z_NULL;
strm.zfree = Z_NULL;
strm.opaque = Z_NULL;
- ret = deflateInit(&strm, level);
+ ret = deflateInit2(&strm, level, Z_DEFLATED, MAX_WBITS + 16, 8, Z_DEFAULT_STRATEGY);
if (ret != Z_OK) {
log_println(6, "zlib deflateInit routine failed with %d", ret);
return ret;


  • [ndt-dev] [ndt] r1181 committed - Issue36: Created archives are now in proper gzip format, ndt, 02/16/2015

Archive powered by MHonArc 2.6.16.

Top of Page