diff options
author | Jeremy Allison <jra@samba.org> | 2008-11-06 01:45:40 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2008-11-06 01:45:40 -0800 |
commit | 7522ef15aca2429ef57c75d8297dd8121e79c9da (patch) | |
tree | b5aa83c8573565c14d5d3aafbb29f6cfc39af5d3 /source3 | |
parent | 24c598b1b95742961d43ff5bd61831405b561dfe (diff) | |
download | samba-7522ef15aca2429ef57c75d8297dd8121e79c9da.tar.gz samba-7522ef15aca2429ef57c75d8297dd8121e79c9da.tar.bz2 samba-7522ef15aca2429ef57c75d8297dd8121e79c9da.zip |
Final fix to make us pass NULL SD test in RAW-ACLs. Not sure if this is 100% right. Only inheritance left to fix.
Jeremy.
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/nttrans.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/smbd/nttrans.c b/source3/smbd/nttrans.c index f711b588c5..50a3aea856 100644 --- a/source3/smbd/nttrans.c +++ b/source3/smbd/nttrans.c @@ -725,6 +725,9 @@ static NTSTATUS set_sd(files_struct *fsp, uint8 *data, uint32 sd_len, if (psd->sacl==0) { security_info_sent &= ~SACL_SECURITY_INFORMATION; } + if (security_info_sent & DACL_SECURITY_INFORMATION) { + psd->type |= SEC_DESC_DACL_PRESENT; + } if (psd->dacl==0) { security_info_sent &= ~DACL_SECURITY_INFORMATION; } |