diff options
author | Alexander Bokovoy <ab@samba.org> | 2009-08-02 17:42:49 +0300 |
---|---|---|
committer | Alexander Bokovoy <ab@samba.org> | 2009-08-02 20:31:19 +0300 |
commit | 20d93b5b604da8a81d6435983fe2e3c33673b06c (patch) | |
tree | 8e4bd91b46434c4e545688ecdcb19eaebc9148a6 /source3/modules | |
parent | 4f147388c0512fc291cc53764c017d7117154afc (diff) | |
download | samba-20d93b5b604da8a81d6435983fe2e3c33673b06c.tar.gz samba-20d93b5b604da8a81d6435983fe2e3c33673b06c.tar.bz2 samba-20d93b5b604da8a81d6435983fe2e3c33673b06c.zip |
Fix breakage for connect function after API change (connect -> connect_fn)
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, |