Changeset 943 in MondoRescue for branches/stable


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

Same improvement for getfacl

File:
1 edited

Legend:

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

    r942 r943  
    602602    int retval = 0;
    603603
    604     malloc_string(command);
    605     sprintf(command, "touch %s", facl_fname);
    606     run_program_and_log_output(command, 8);
    607604    if (find_home_of_exe("getfacl")) {
     605        malloc_string(command);
     606        sprintf(command, "touch %s", facl_fname);
     607        run_program_and_log_output(command, 8);
    608608//      sort_file(filelist); // FIXME - filelist chopper sorts, so this isn't necessary
    609609        sprintf(command,
     
    612612        iamhere(command);
    613613        retval = system(command);
    614     }
    615     paranoid_free(command);
     614        paranoid_free(command);
     615    }
    616616    return (retval);
    617617}
Note: See TracChangeset for help on using the changeset viewer.