summaryrefslogtreecommitdiff
path: root/examples/VFS/skel_opaque.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2017-05-23 15:33:31 -0700
committerJeremy Allison <jra@samba.org>2017-05-31 22:50:22 +0200
commit85c8780581e0f2bb0fdb940a865857db68111fbd (patch)
treed9672a31b0d33a9bc5451c15cf15f61a6fdad62b /examples/VFS/skel_opaque.c
parent63d2003ecd74b009f484f2af6ad365e754879e13 (diff)
downloadsamba-85c8780581e0f2bb0fdb940a865857db68111fbd.tar.gz
s3: VFS: Change SMB_VFS_SYS_ACL_DELETE_DEF_FILE to use const struct smb_filename * instead of const char *.
We need to migrate all pathname based VFS calls to use a struct to finish modernising the VFS with extra timestamp and flags parameters. Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
Diffstat (limited to 'examples/VFS/skel_opaque.c')
-rw-r--r--examples/VFS/skel_opaque.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/VFS/skel_opaque.c b/examples/VFS/skel_opaque.c
index af119f32db1..801012a8965 100644
--- a/examples/VFS/skel_opaque.c
+++ b/examples/VFS/skel_opaque.c
@@ -787,7 +787,7 @@ static int skel_sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp,
}
static int skel_sys_acl_delete_def_file(vfs_handle_struct *handle,
- const char *path)
+ const struct smb_filename *smb_fname)
{
errno = ENOSYS;
return -1;