The branch, master has been updated
       via  3554d88 vfs_streams_xattr: add missing call to SMB_VFS_NEXT_CONNECT
      from  0da3ab9 selftest: Add test for joining a Samba classic DC as a BDC

https://git.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 3554d88a589c079edea068867601c2d25b966932
Author: Ralph Boehme <[email protected]>
Date:   Thu Dec 11 19:06:11 2014 +0100

    vfs_streams_xattr: add missing call to SMB_VFS_NEXT_CONNECT
    
    Signed-off-by: Ralph Boehme <[email protected]>
    Rewviewed-by: Jeremy Allison <[email protected]>
    
    Autobuild-User(master): Jeremy Allison <[email protected]>
    Autobuild-Date(master): Fri Dec 12 02:09:24 CET 2014 on sn-devel-104

-----------------------------------------------------------------------

Summary of changes:
 source3/modules/vfs_streams_xattr.c | 6 ++++++
 1 file changed, 6 insertions(+)


Changeset truncated at 500 lines:

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) {


-- 
Samba Shared Repository

Reply via email to