From 5c48ba6563ff025037b9337d34b9aa13de610fba Mon Sep 17 00:00:00 2001 From: Tim Prouty Date: Tue, 30 Dec 2008 17:17:24 -0800 Subject: s3: General cleanup of the open path in the OneFS vfs module --- source3/modules/onefs_acl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/modules/onefs_acl.c') diff --git a/source3/modules/onefs_acl.c b/source3/modules/onefs_acl.c index 5351118a87..9258e0cddc 100644 --- a/source3/modules/onefs_acl.c +++ b/source3/modules/onefs_acl.c @@ -696,8 +696,8 @@ onefs_get_nt_acl(vfs_handle_struct *handle, const char* name, * * @return NTSTATUS_OK if successful */ -NTSTATUS onefs_setup_sd(uint32 security_info_sent, SEC_DESC *psd, - struct ifs_security_descriptor *sd) +NTSTATUS onefs_samba_sd_to_sd(uint32 security_info_sent, SEC_DESC *psd, + struct ifs_security_descriptor *sd) { struct ifs_security_acl dacl, sacl, *daclp, *saclp; struct ifs_identity owner, group, *ownerp, *groupp; @@ -789,7 +789,7 @@ onefs_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp, DEBUG(5,("Setting SD on file %s.\n", fsp->fsp_name )); - status = onefs_setup_sd(security_info_sent, psd, &sd); + status = onefs_samba_sd_to_sd(security_info_sent, psd, &sd); if (!NT_STATUS_IS_OK(status)) { DEBUG(3, ("SD initialization failure: %s", nt_errstr(status))); -- cgit