summaryrefslogtreecommitdiffstats
path: root/source3/modules/vfs_streams_xattr.c
diff options
context:
space:
mode:
authorRalph Boehme <slow@samba.org>2014-12-11 19:06:11 +0100
committerJeremy Allison <jra@samba.org>2014-12-12 02:09:24 +0100
commit3554d88a589c079edea068867601c2d25b966932 (patch)
treedbde793806a204b22845fb304815fda65100eae3 /source3/modules/vfs_streams_xattr.c
parent0da3ab96739df436b54fcf6c7e138229271b0866 (diff)
downloadsamba-3554d88a589c079edea068867601c2d25b966932.tar.gz
samba-3554d88a589c079edea068867601c2d25b966932.tar.xz
samba-3554d88a589c079edea068867601c2d25b966932.zip
vfs_streams_xattr: add missing call to SMB_VFS_NEXT_CONNECT
Signed-off-by: Ralph Boehme <slow@samba.org> Rewviewed-by: Jeremy Allison <jra@samba.org> Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Fri Dec 12 02:09:24 CET 2014 on sn-devel-104
Diffstat (limited to 'source3/modules/vfs_streams_xattr.c')
-rw-r--r--source3/modules/vfs_streams_xattr.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/modules/vfs_streams_xattr.c b/source3/modules/vfs_streams_xattr.c
index 5c5a9a17fa..b3c1df15c3 100644
--- a/source3/modules/vfs_streams_xattr.c
+++ b/source3/modules/vfs_streams_xattr.c
@@ -879,6 +879,12 @@ static int streams_xattr_connect(vfs_handle_struct *handle,
struct streams_xattr_config *config;
const char *default_prefix = SAMBA_XATTR_DOSSTREAM_PREFIX;
const char *prefix;
+ int rc;
+
+ rc = SMB_VFS_NEXT_CONNECT(handle, service, user);
+ if (rc != 0) {
+ return rc;
+ }
config = talloc_zero(handle->conn, struct streams_xattr_config);
if (config == NULL) {