diff options
author | Tim Potter <tpot@samba.org> | 2000-07-10 06:41:04 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2000-07-10 06:41:04 +0000 |
commit | b561c185972921861946a69b8846681bc7ed3f87 (patch) | |
tree | 98d741d45164d90d0162ddcd01aa5f40adf6dc1a /source3/smbd | |
parent | 64299375b544de91dab75d62610d7dc7f1f8328d (diff) | |
download | samba-b561c185972921861946a69b8846681bc7ed3f87.tar.gz samba-b561c185972921861946a69b8846681bc7ed3f87.tar.bz2 samba-b561c185972921861946a69b8846681bc7ed3f87.zip |
Fixes for various compile warnings on Solaris 8.
(This used to be commit 898a483cdab1ed7d8ff902c0dc0e0620440ae4cd)
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", |