Ignore:
Timestamp:
Nov 6, 2007, 1:37:38 AM (16 years ago)
Author:
Bruno Cornec
Message:

Continue on configuration file items (compression)

File:
1 edited

Legend:

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

    r1669 r1769  
    11541154 * - @c bkpinfo->media_size
    11551155 * - @c bkpinfo->optimal_set_size
    1156  * - @c bkpinfo->use_lzo
    11571156 * @param noof_sets The number of filesets created.
    11581157 * @ingroup archiveGroup
     
    11781177    scratchLL = (scratchLL / 1024) / bkpinfo->media_size;
    11791178    scratchLL++;
    1180     if (bkpinfo->use_lzo) {
    1181         scratchLL = (scratchLL * 2) / 3;
    1182     } else if (bkpinfo->use_gzip) {
    1183         scratchLL = (scratchLL * 2) / 3;
    1184     } else {
    1185         scratchLL = scratchLL / 2;
    1186     }
     1179    scratchLL = (scratchLL * 2) / 3;
    11871180    if (!scratchLL) {
    11881181        scratchLL++;
Note: See TracChangeset for help on using the changeset viewer.