Changeset 1224 in MondoRescue


Ignore:
Timestamp:
Mar 3, 2007, 7:44:16 PM (17 years ago)
Author:
Bruno Cornec
Message:

Fix temporarily a bug when a biggiefile > 32MB was compressed below the size of a slice (16MB)
Mondo seems to not deal well when having less than a slice.
So biggiefile limit is now 64 MB to avoid that.
A better solution is to fix mondo so that it works with only one slice.
All these parameters are candidate for mondo configuration file of course.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mondo/src/common/libmondo-filelist.c

    r1180 r1224  
    229229    assert(maxsetsizeK > 0);
    230230
    231     max_sane_size_for_a_file = 32L * 1024L;
     231    max_sane_size_for_a_file = 64L * 1024L;
    232232// max_sane_size_for_a_file = maxsetsizeK*2;
    233233//  if (max_sane_size_for_a_file > 32*1024)
Note: See TracChangeset for help on using the changeset viewer.