Ignore:
Timestamp:
Dec 7, 2006, 2:01:34 AM (17 years ago)
Author:
Bruno Cornec
Message:

Attempt to solve #113

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mondo/src/mondorestore/mondo-restore.c

    r952 r998  
    15721572                    if (does_file_exist
    15731573                        (slice_fname
     1574                         (bigfileno, sliceno, ARCHIVES_PATH, "gz"))) {
     1575                    strcpy(bzip2_command, "gzip");
     1576                    strcpy(suffix, "gz");
     1577                } else
     1578                    if (does_file_exist
     1579                        (slice_fname
    15741580                         (bigfileno, sliceno, ARCHIVES_PATH, "bz2"))) {
    15751581                    strcpy(bzip2_command, "bzip2");
     
    20372043        if (strstr(tarball_fname, ".bz2")) {
    20382044            strcpy(executable, "bzip2");
     2045        } else if (strstr(tarball_fname, ".gz")) {
     2046            strcpy(executable, "gzip");
    20392047        } else if (strstr(tarball_fname, ".lzo")) {
    20402048            strcpy(executable, "lzop");
Note: See TracChangeset for help on using the changeset viewer.