diff options
author | Christof Schmitt <cs@samba.org> | 2015-02-18 10:14:22 -0700 |
---|---|---|
committer | Christof Schmitt <cs@samba.org> | 2015-03-02 22:31:07 +0100 |
commit | ca69d43dfd13ddc4d501d3e36944f56e13e75c0f (patch) | |
tree | 4a5e78c05ee31b30a0bd71e94fae6210deae5faf /source3/modules/vfs_gpfs.h | |
parent | 4a89e8452ecbcb09d3e14ffb324bcfbed6328c7d (diff) | |
download | samba-ca69d43dfd13ddc4d501d3e36944f56e13e75c0f.tar.gz samba-ca69d43dfd13ddc4d501d3e36944f56e13e75c0f.tar.xz samba-ca69d43dfd13ddc4d501d3e36944f56e13e75c0f.zip |
gpfs: Simplify initialization for gpfs library wrapper
Merge the code for initializing the function pointers in one function.
Signed-off-by: Christof Schmitt <cs@samba.org>
Reviewed-by: Ralph Böhme <slow@samba.org>
Diffstat (limited to 'source3/modules/vfs_gpfs.h')
-rw-r--r-- | source3/modules/vfs_gpfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_gpfs.h b/source3/modules/vfs_gpfs.h index 728231f146..37b58f712c 100644 --- a/source3/modules/vfs_gpfs.h +++ b/source3/modules/vfs_gpfs.h @@ -27,6 +27,7 @@ #define GPFS_GETACL_NATIVE 0x00000004 #endif +int gpfswrap_init(void); bool set_gpfs_sharemode(files_struct *fsp, uint32 access_mask, uint32 share_access); int set_gpfs_lease(int fd, int leasetype); @@ -44,5 +45,4 @@ int get_gpfs_quota(const char *pathname, int type, int id, int get_gpfs_fset_id(const char *pathname, int *fset_id); int smbd_gpfs_set_times_path(char *path, struct smb_file_time *ft); -void init_gpfs(void); void smbd_gpfs_lib_init(void); |