Displaying 1 result from an estimated 1 matches for "acl_set_support".
2012 Jul 05
0
acl_tdb failed to convert file acl to posix permisions
...)
error packet at smbd/nttrans.c(2106) cmd=160 (SMBnttrans) NT_STATUS_ACCESS_DENIED
In posix_acls.c we can see that in such a scenario, the code comes here (line 3993):
/*
* If we cannot set using POSIX ACLs we fall back to checking if we need to chmod.
*/
if(!acl_set_support && acl_perms) {
mode_t posix_perms;
if (!convert_canon_ace_to_posix_perms( fsp, file_ace_list, &posix_perms)) {
free_canon_ace_list(file_ace_list);
free_canon_ace_list(dir_ace_list);...