diff options
author | Volker Lendecke <vl@samba.org> | 2008-01-20 14:09:08 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-01-20 14:09:08 +0100 |
commit | fe57c149f0916e895055e2a9faf5eac8724912fb (patch) | |
tree | 0ab7cab7bb8f79115e29f4ab7ee233ab6f4ee86f /source3/modules | |
parent | 6fcbb1111d06cd158cc6f1178418fe7299830197 (diff) | |
download | samba-fe57c149f0916e895055e2a9faf5eac8724912fb.tar.gz samba-fe57c149f0916e895055e2a9faf5eac8724912fb.tar.xz samba-fe57c149f0916e895055e2a9faf5eac8724912fb.zip |
Do not use an unfinished fsp in streams_xattr_open
(This used to be commit 023b313d0d4ed3beb8d77177bc8141cadeb86658)
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_streams_xattr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_streams_xattr.c b/source3/modules/vfs_streams_xattr.c index 4fc25f0e836..d0112a5d740 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))); |