The branch, master has been updated
       via  20d93b5b604da8a81d6435983fe2e3c33673b06c (commit)
      from  4f147388c0512fc291cc53764c017d7117154afc (commit)

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


- Log -----------------------------------------------------------------
commit 20d93b5b604da8a81d6435983fe2e3c33673b06c
Author: Alexander Bokovoy <a...@samba.org>
Date:   Sun Aug 2 17:42:49 2009 +0300

    Fix breakage for connect function after API change (connect -> connect_fn)

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

Summary of changes:
 source3/modules/vfs_prealloc.c |    2 +-
 source3/modules/vfs_tsmsm.c    |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/modules/vfs_prealloc.c b/source3/modules/vfs_prealloc.c
index 4e6e5d9..c6333be 100644
--- a/source3/modules/vfs_prealloc.c
+++ b/source3/modules/vfs_prealloc.c
@@ -209,7 +209,7 @@ static int prealloc_ftruncate(vfs_handle_struct * handle,
 static struct vfs_fn_pointers prealloc_fns = {
        .open = prealloc_open,
        .ftruncate = prealloc_ftruncate,
-       .connect = prealloc_connect,
+       .connect_fn = prealloc_connect,
 };
 
 NTSTATUS vfs_prealloc_init(void);
diff --git a/source3/modules/vfs_tsmsm.c b/source3/modules/vfs_tsmsm.c
index e8ae7a2..19dc79b 100644
--- a/source3/modules/vfs_tsmsm.c
+++ b/source3/modules/vfs_tsmsm.c
@@ -363,7 +363,7 @@ static uint32_t tsmsm_fs_capabilities(struct 
vfs_handle_struct *handle)
 }
 
 static struct vfs_fn_pointers tsmsm_fns = {
-       .connect = tsmsm_connect,
+       .connect_fn = tsmsm_connect,
        .fs_capabilities = tsmsm_fs_capabilities,
        .aio_force = tsmsm_aio_force,
        .aio_return = tsmsm_aio_return,


-- 
Samba Shared Repository

Reply via email to