Lines Matching refs:nacl
133 acl_t nacl; in clear_inheritance_flags() local
142 nacl = acl_dup(acl); in clear_inheritance_flags()
143 if (nacl == NULL) { in clear_inheritance_flags()
149 while (acl_get_entry(nacl, entry_id, &acl_entry) == 1) { in clear_inheritance_flags()
156 if (acl_delete_entry(nacl, acl_entry) != 0) in clear_inheritance_flags()
167 return (nacl); in clear_inheritance_flags()
173 acl_t acl, nacl; in handle_file() local
239 nacl = entry->acl; in handle_file()
244 nacl = clear_inheritance_flags(nacl); in handle_file()
245 local_error += add_acl(nacl, entry->entry_number, &acl, in handle_file()
251 nacl = clear_inheritance_flags(nacl); in handle_file()
252 local_error += merge_acl(nacl, &acl, file->fts_path); in handle_file()
289 local_error += remove_acl(nacl, &acl, file->fts_path); in handle_file()
299 if (nacl != entry->acl) { in handle_file()
300 acl_free(nacl); in handle_file()
301 nacl = NULL; in handle_file()