diff options
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/vfs.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/smbd/vfs.c b/source3/smbd/vfs.c index 9a1af18b3d..7c34817351 100644 --- a/source3/smbd/vfs.c +++ b/source3/smbd/vfs.c @@ -83,6 +83,7 @@ int vfs_init_default(connection_struct *conn) /**************************************************************************** initialise custom vfs hooks ****************************************************************************/ + #ifdef HAVE_LIBDL BOOL vfs_init_custom(connection_struct *conn) { @@ -105,7 +106,8 @@ BOOL vfs_init_custom(connection_struct *conn) /* Get handle on vfs_init() symbol */ - fptr = dlsym(handle, "vfs_init"); + fptr = (struct vfs_ops *(*)(struct vfs_options *)) + dlsym(handle, "vfs_init"); if (fptr == NULL) { DEBUG(0, ("No vfs_init() symbol found in %s\n", |