summaryrefslogtreecommitdiff
path: root/source3/smbd
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2019-10-10 14:35:37 -0700
committerJeremy Allison <jra@samba.org>2019-10-15 20:07:51 +0000
commitb01169ff32188939752c064e2eb803f57a837522 (patch)
treec5476f4d799c43dee9a00967353eb4955ad903bd /source3/smbd
parente2863a7e395bc5b73f8d9ef7bca7c21f20c7eeb3 (diff)
downloadsamba-b01169ff32188939752c064e2eb803f57a837522.tar.gz
s3: VFS: Complete the removal of SMB_VFS_CHOWN()
No longer used anywhere. Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Ralph Böhme <slow@samba.org> Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Tue Oct 15 20:07:51 UTC 2019 on sn-devel-184
Diffstat (limited to 'source3/smbd')
-rw-r--r--source3/smbd/vfs.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/source3/smbd/vfs.c b/source3/smbd/vfs.c
index 588580314e8..a104921784f 100644
--- a/source3/smbd/vfs.c
+++ b/source3/smbd/vfs.c
@@ -2025,15 +2025,6 @@ int smb_vfs_call_fchmod(struct vfs_handle_struct *handle,
return handle->fns->fchmod_fn(handle, fsp, mode);
}
-int smb_vfs_call_chown(struct vfs_handle_struct *handle,
- const struct smb_filename *smb_fname,
- uid_t uid,
- gid_t gid)
-{
- VFS_FIND(chown);
- return handle->fns->chown_fn(handle, smb_fname, uid, gid);
-}
-
int smb_vfs_call_fchown(struct vfs_handle_struct *handle,
struct files_struct *fsp, uid_t uid, gid_t gid)
{