summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_streams_xattr.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2008-01-20 14:09:08 +0100
committerVolker Lendecke <vl@samba.org>2008-01-20 14:09:08 +0100
commitfe57c149f0916e895055e2a9faf5eac8724912fb (patch)
tree0ab7cab7bb8f79115e29f4ab7ee233ab6f4ee86f /source3/modules/vfs_streams_xattr.c
parent6fcbb1111d06cd158cc6f1178418fe7299830197 (diff)
downloadsamba-fe57c149f0916e895055e2a9faf5eac8724912fb.tar.gz
samba-fe57c149f0916e895055e2a9faf5eac8724912fb.tar.bz2
samba-fe57c149f0916e895055e2a9faf5eac8724912fb.zip
Do not use an unfinished fsp in streams_xattr_open
(This used to be commit 023b313d0d4ed3beb8d77177bc8141cadeb86658)
Diffstat (limited to 'source3/modules/vfs_streams_xattr.c')
-rw-r--r--source3/modules/vfs_streams_xattr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_streams_xattr.c b/source3/modules/vfs_streams_xattr.c
index 4fc25f0e83..d0112a5d74 100644
--- a/source3/modules/vfs_streams_xattr.c
+++ b/source3/modules/vfs_streams_xattr.c
@@ -270,7 +270,7 @@ static int streams_xattr_open(vfs_handle_struct *handle, const char *fname,
goto fail;
}
- status = get_ea_value(talloc_tos(), handle->conn, fsp, base,
+ status = get_ea_value(talloc_tos(), handle->conn, NULL, base,
xattr_name, &ea);
DEBUG(10, ("get_ea_value returned %s\n", nt_errstr(status)));