Ignore:
Timestamp:
Nov 2, 2006, 1:22:57 AM (17 years ago)
Author:
Bruno Cornec
Message:

Attempt to fix #66 (setfacl not existing => no error)

File:
1 edited

Legend:

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

    r911 r912  
    24562456        sprintf(acl_fname, ACL_BIGGLST_FNAME_RAW_SZ, ARCHIVES_PATH);
    24572457        sprintf(xattr_fname, XATTR_BIGGLST_FNAME_RAW_SZ, ARCHIVES_PATH);
    2458         if (length_of_file(acl_fname) > 0 && find_home_of_exe("setfacl")) {
     2458        if (length_of_file(acl_fname) > 0) {
    24592459            set_acl_list(biggies_whose_EXATs_we_should_set, acl_fname);
    24602460        }
    2461         if (length_of_file(xattr_fname) > 0
    2462             && find_home_of_exe("setfattr")) {
     2461        if (length_of_file(xattr_fname) > 0) {
    24632462            set_fattr_list(biggies_whose_EXATs_we_should_set, xattr_fname);
    24642463        }
Note: See TracChangeset for help on using the changeset viewer.