summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_acl_xattr.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2009-02-25 14:50:19 -0800
committerJeremy Allison <jra@samba.org>2009-02-25 14:50:19 -0800
commita6d0a93fc27729b63ae3fd4994059f3854a63845 (patch)
treefa5d3e468d3cf022223f39e2898d95e922004f55 /source3/modules/vfs_acl_xattr.c
parent9e54f4151cf0e5d958f1929d854d082635b11c39 (diff)
downloadsamba-a6d0a93fc27729b63ae3fd4994059f3854a63845.tar.gz
samba-a6d0a93fc27729b63ae3fd4994059f3854a63845.tar.bz2
samba-a6d0a93fc27729b63ae3fd4994059f3854a63845.zip
Use fsp->posix_open in preference if we have it.
Jeremy.
Diffstat (limited to 'source3/modules/vfs_acl_xattr.c')
-rw-r--r--source3/modules/vfs_acl_xattr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/modules/vfs_acl_xattr.c b/source3/modules/vfs_acl_xattr.c
index f46e4683aa..039e469426 100644
--- a/source3/modules/vfs_acl_xattr.c
+++ b/source3/modules/vfs_acl_xattr.c
@@ -381,7 +381,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);
@@ -563,7 +563,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);