Use fsp->posix_open in preference if we have it.
authorJeremy Allison <jra@samba.org>
Wed, 25 Feb 2009 22:50:43 +0000 (14:50 -0800)
committerKarolin Seeger <kseeger@samba.org>
Fri, 6 Mar 2009 07:28:26 +0000 (08:28 +0100)
Jeremy.
(cherry picked from commit 2b5b5bed41320f1890c69c714c7596e1a7a1b964)

source/modules/vfs_acl_tdb.c
source/modules/vfs_acl_xattr.c

index 08c782d6b7b5827820646471db7c0dfba38b9d05..49a316a1824c891ee0735d2f3e8590cfc636a342 100644 (file)
@@ -191,7 +191,7 @@ static NTSTATUS get_acl_blob(TALLOC_CTX *ctx,
        if (fsp && fsp->fh->fd != -1) {
                ret = SMB_VFS_FSTAT(fsp, &sbuf);
        } else {
-               if (lp_posix_pathnames()) {
+               if (fsp->posix_open) {
                        ret = SMB_VFS_LSTAT(handle->conn, name, &sbuf);
                } else {
                        ret = SMB_VFS_STAT(handle->conn, name, &sbuf);
@@ -282,7 +282,7 @@ static NTSTATUS store_acl_blob_fsp(vfs_handle_struct *handle,
        if (fsp->fh->fd != -1) {
                ret = SMB_VFS_FSTAT(fsp, &sbuf);
        } else {
-               if (lp_posix_pathnames()) {
+               if (fsp->posix_open) {
                        ret = SMB_VFS_LSTAT(handle->conn, fsp->fsp_name, &sbuf);
                } else {
                        ret = SMB_VFS_STAT(handle->conn, fsp->fsp_name, &sbuf);
@@ -508,7 +508,7 @@ static NTSTATUS inherit_new_acl(vfs_handle_struct *handle,
                if (fsp && !fsp->is_directory && fsp->fh->fd != -1) {
                        ret = SMB_VFS_FSTAT(fsp, &sbuf);
                } else {
-                       if (lp_posix_pathnames()) {
+                       if (fsp->posix_open) {
                                ret = SMB_VFS_LSTAT(handle->conn,fname, &sbuf);
                        } else {
                                ret = SMB_VFS_STAT(handle->conn,fname, &sbuf);
@@ -758,7 +758,7 @@ static NTSTATUS fset_nt_acl_tdb(vfs_handle_struct *handle, files_struct *fsp,
                        return NT_STATUS_OK;
                }
                if (fsp->is_directory || fsp->fh->fd == -1) {
-                       if (lp_posix_pathnames()) {
+                       if (fsp->posix_open) {
                                ret = SMB_VFS_LSTAT(fsp->conn,fsp->fsp_name, &sbuf);
                        } else {
                                ret = SMB_VFS_STAT(fsp->conn,fsp->fsp_name, &sbuf);
@@ -888,7 +888,7 @@ static int sys_acl_set_fd_tdb(vfs_handle_struct *handle,
        SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context, return -1);
 
        if (fsp->is_directory || fsp->fh->fd == -1) {
-               if (lp_posix_pathnames()) {
+               if (fsp->posix_open) {
                        ret = SMB_VFS_LSTAT(fsp->conn,fsp->fsp_name, &sbuf);
                } else {
                        ret = SMB_VFS_STAT(fsp->conn,fsp->fsp_name, &sbuf);
index d2faf8e3ed5cdeee6e59a66c11b3fcded493bc1f..b12422fe8360af6151c5c4697e5e10e8685fe0e8 100644 (file)
@@ -384,7 +384,7 @@ static NTSTATUS inherit_new_acl(vfs_handle_struct *handle,
                if (fsp && !fsp->is_directory && fsp->fh->fd != -1) {
                        ret = SMB_VFS_FSTAT(fsp, &sbuf);
                } else {
-                       if (lp_posix_pathnames()) {
+                       if (fsp->posix_open) {
                                ret = SMB_VFS_LSTAT(handle->conn,fname, &sbuf);
                        } else {
                                ret = SMB_VFS_STAT(handle->conn,fname, &sbuf);
@@ -566,7 +566,7 @@ static NTSTATUS fset_nt_acl_xattr(vfs_handle_struct *handle, files_struct *fsp,
                        return NT_STATUS_OK;
                }
                if (fsp->is_directory || fsp->fh->fd == -1) {
-                       if (lp_posix_pathnames()) {
+                       if (fsp->posix_open) {
                                ret = SMB_VFS_LSTAT(fsp->conn,fsp->fsp_name, &sbuf);
                        } else {
                                ret = SMB_VFS_STAT(fsp->conn,fsp->fsp_name, &sbuf);