Prefix VFS API macros with SMB_ for consistency and to avoid problems with VFS_ macro...
[amitay/samba.git] / source3 / smbd / nttrans.c
index fef176cae1fb5d3197194380243098d3991ea032..3ddf191ef60fd3b1e5aaf0d35feae73081217234 100644 (file)
@@ -1075,7 +1075,7 @@ static NTSTATUS set_sd(files_struct *fsp, char *data, uint32 sd_len, uint32 secu
        if (psd->off_dacl==0)
                security_info_sent &= ~DACL_SECURITY_INFORMATION;
        
-       ret = VFS_FSET_NT_ACL( fsp, fsp->fd, security_info_sent, psd);
+       ret = SMB_VFS_FSET_NT_ACL( fsp, fsp->fd, security_info_sent, psd);
        
        if (!ret) {
                talloc_destroy(mem_ctx);
@@ -1598,7 +1598,7 @@ static int call_nt_transact_query_security_desc(connection_struct *conn,
        if (!lp_nt_acl_support(SNUM(conn)))
                sd_size = get_null_nt_acl(mem_ctx, &psd);
        else
-               sd_size = VFS_FGET_NT_ACL(fsp, fsp->fd, &psd);
+               sd_size = SMB_VFS_FGET_NT_ACL(fsp, fsp->fd, &psd);
 
        if (sd_size == 0) {
                talloc_destroy(mem_ctx);