Changeset 942 in MondoRescue


Ignore:
Timestamp:
Nov 18, 2006, 1:13:43 AM (17 years ago)
Author:
Bruno Cornec
Message:

Small improvement on getfattr handling

File:
1 edited

Legend:

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

    r941 r942  
    623623    int retval = 0;
    624624
    625     malloc_string(command);
    626     sprintf(command, "touch %s", fattr_fname);
    627     run_program_and_log_output(command, 8);
    628625    if (find_home_of_exe("getfattr")) {
     626        malloc_string(command);
     627        sprintf(command, "touch %s", fattr_fname);
     628        run_program_and_log_output(command, 8);
     629        paranoid_free(command);
    629630//      sort_file(filelist); // FIXME - filelist chopper sorts, so this isn't necessary
    630631        retval =
     
    632633                         fattr_fname);
    633634    }
    634     paranoid_free(command);
    635635    return (retval);
    636636}
Note: See TracChangeset for help on using the changeset viewer.