Changeset 751 for trunk/server/source3/rpc_server/srvsvc
- Timestamp:
- Nov 29, 2012, 1:59:04 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server/source3/rpc_server/srvsvc/srv_srvsvc_nt.c
r745 r751 2319 2319 security_info_sent = r->in.securityinformation; 2320 2320 2321 if (psd->owner_sid==0) { 2322 security_info_sent &= ~SECINFO_OWNER; 2323 } 2324 if (psd->group_sid==0) { 2325 security_info_sent &= ~SECINFO_GROUP; 2326 } 2327 if (psd->sacl==0) { 2328 security_info_sent &= ~SECINFO_SACL; 2329 } 2330 if (psd->dacl==0) { 2331 security_info_sent &= ~SECINFO_DACL; 2332 } 2333 2334 /* Convert all the generic bits. */ 2335 security_acl_map_generic(psd->dacl, &file_generic_mapping); 2336 security_acl_map_generic(psd->sacl, &file_generic_mapping); 2337 2338 nt_status = SMB_VFS_FSET_NT_ACL(fsp, 2339 security_info_sent, 2340 psd); 2321 nt_status = set_sd(fsp, psd, security_info_sent); 2341 2322 2342 2323 if (!NT_STATUS_IS_OK(nt_status) ) {
Note:
See TracChangeset
for help on using the changeset viewer.