diff options
author | Christof Schmitt <cs@samba.org> | 2014-12-10 15:22:27 -0700 |
---|---|---|
committer | Christof Schmitt <cs@samba.org> | 2015-03-02 22:31:08 +0100 |
commit | e9e87d456aeb9acd36d352378b615769444809d3 (patch) | |
tree | 049e49c269385bbe18d053527aef5374ff22439c /source3/modules/gpfs.c | |
parent | fdd6078ddda15e4cc6eae4ce35774dbe94da0950 (diff) | |
download | samba-e9e87d456aeb9acd36d352378b615769444809d3.tar.gz samba-e9e87d456aeb9acd36d352378b615769444809d3.tar.xz samba-e9e87d456aeb9acd36d352378b615769444809d3.zip |
gpfs: Rename wrapper for gpfs_set_winattrs_path
Signed-off-by: Christof Schmitt <cs@samba.org>
Reviewed-by: Ralph Böhme <slow@samba.org>
Diffstat (limited to 'source3/modules/gpfs.c')
-rw-r--r-- | source3/modules/gpfs.c | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/source3/modules/gpfs.c b/source3/modules/gpfs.c index 2b12bbe969..dbcfa32320 100644 --- a/source3/modules/gpfs.c +++ b/source3/modules/gpfs.c @@ -32,7 +32,8 @@ static int (*gpfs_getacl_fn)(char *pathname, int flags, void *acl); static int (*gpfs_putacl_fn)(char *pathname, int flags, void *acl); static int (*gpfs_get_realfilename_path_fn)(char *pathname, char *filenamep, int *len); -static int (*gpfs_set_winattrs_path_fn)(char *pathname, int flags, struct gpfs_winattr *attrs); +static int (*gpfs_set_winattrs_path_fn)(char *pathname, int flags, + struct gpfs_winattr *attrs); static int (*gpfs_get_winattrs_path_fn)(char *pathname, struct gpfs_winattr *attrs); static int (*gpfs_get_winattrs_fn)(int fd, struct gpfs_winattr *attrs); static int (*gpfs_prealloc_fn)(int fd, gpfs_off64_t startOffset, gpfs_off64_t bytesToPrealloc); @@ -126,6 +127,17 @@ int gpfswrap_get_realfilename_path(char *pathname, char *filenamep, int *len) return gpfs_get_realfilename_path_fn(pathname, filenamep, len); } +int gpfswrap_set_winattrs_path(char *pathname, int flags, + struct gpfs_winattr *attrs) +{ + if (gpfs_set_winattrs_path_fn == NULL) { + errno = ENOSYS; + return -1; + } + + return gpfs_set_winattrs_path_fn(pathname, flags, attrs); +} + bool set_gpfs_sharemode(files_struct *fsp, uint32 access_mask, uint32 share_access) { @@ -231,17 +243,6 @@ int smbd_gpfs_prealloc(int fd, gpfs_off64_t start, gpfs_off64_t bytes) return gpfs_prealloc_fn(fd, start, bytes); } -int set_gpfs_winattrs(char *pathname,int flags,struct gpfs_winattr *attrs) -{ - if (gpfs_set_winattrs_path_fn == NULL) { - errno = ENOSYS; - return -1; - } - - DEBUG(10, ("gpfs_set_winattrs_path:open call %s\n",pathname)); - return gpfs_set_winattrs_path_fn(pathname,flags, attrs); -} - int get_gpfs_quota(const char *pathname, int type, int id, struct gpfs_quotaInfo *qi) { |