diff options
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_prealloc.c | 2 | ||||
-rw-r--r-- | source3/modules/vfs_tsmsm.c | 2 |
2 files changed, 2 insertions, 2 deletions
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, |