gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r1271 - GNUnet/src/applications/fs/ecrs


From: durner
Subject: [GNUnet-SVN] r1271 - GNUnet/src/applications/fs/ecrs
Date: Tue, 5 Jul 2005 11:55:19 -0700 (PDT)

Author: durner
Date: 2005-07-05 11:55:12 -0700 (Tue, 05 Jul 2005)
New Revision: 1271

Modified:
   GNUnet/src/applications/fs/ecrs/meta.c
Log:
maximum compression

Modified: GNUnet/src/applications/fs/ecrs/meta.c
===================================================================
--- GNUnet/src/applications/fs/ecrs/meta.c      2005-07-05 18:33:03 UTC (rev 
1270)
+++ GNUnet/src/applications/fs/ecrs/meta.c      2005-07-05 18:55:12 UTC (rev 
1271)
@@ -324,7 +324,7 @@
 
   dlen = compressBound(oldSize);
   tmp = MALLOC(dlen);
-  if (Z_OK == compress(tmp, &dlen, data, oldSize)) {
+  if (Z_OK == compress2(tmp, &dlen, data, oldSize, 9)) {
     if (dlen < oldSize) {
       memcpy(data, tmp, dlen);
       FREE(tmp);





reply via email to

[Prev in Thread] Current Thread [Next in Thread]