diff options
Diffstat (limited to 'source3/modules/vfs_gpfs.c')
-rw-r--r-- | source3/modules/vfs_gpfs.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c index 3d99830b15..7d1ea88416 100644 --- a/source3/modules/vfs_gpfs.c +++ b/source3/modules/vfs_gpfs.c @@ -2347,7 +2347,12 @@ static struct vfs_fn_pointers vfs_gpfs_fns = { NTSTATUS vfs_gpfs_init(void); NTSTATUS vfs_gpfs_init(void) { - init_gpfs(); + int ret; + + ret = gpfswrap_init(); + if (ret != 0) { + DEBUG(1, ("Could not initialize GPFS library wrapper\n")); + } return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "gpfs", &vfs_gpfs_fns); |