From c9b36dfc2a96bf34994db5a0ac10faa216c0f0d8 Mon Sep 17 00:00:00 2001 From: Ralph Boehme Date: Thu, 11 Dec 2014 19:06:11 +0100 Subject: [PATCH] vfs_streams_xattr: add missing call to SMB_VFS_NEXT_CONNECT BUG: https://bugzilla.samba.org/show_bug.cgi?id=11005 Signed-off-by: Ralph Boehme Rewviewed-by: Jeremy Allison Autobuild-User(master): Jeremy Allison Autobuild-Date(master): Fri Dec 12 02:09:24 CET 2014 on sn-devel-104 (cherry picked from commit 3554d88a589c079edea068867601c2d25b966932) --- source3/modules/vfs_streams_xattr.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source3/modules/vfs_streams_xattr.c b/source3/modules/vfs_streams_xattr.c index 5c5a9a1..b3c1df1 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) { -- 1.9.3