From 20d93b5b604da8a81d6435983fe2e3c33673b06c Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Sun, 2 Aug 2009 17:42:49 +0300 Subject: Fix breakage for connect function after API change (connect -> connect_fn) --- source3/modules/vfs_prealloc.c | 2 +- source3/modules/vfs_tsmsm.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/modules') diff --git a/source3/modules/vfs_prealloc.c b/source3/modules/vfs_prealloc.c index 4e6e5d9d47..c6333be23b 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 e8ae7a29b8..19dc79b581 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, -- cgit