diff options
author | Jeremy Allison <jra@samba.org> | 2016-02-24 14:02:45 -0800 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2016-02-25 20:46:49 +0100 |
commit | cd1335e67dbfce0b6894ff209aa805d0314578da (patch) | |
tree | 835ffef3668cdd93bc1805cd1fabac03d6b055b2 /examples/VFS/skel_transparent.c | |
parent | de2bc1bc3890bcdd1b3b97ecc3d7e96f58ff50d3 (diff) | |
download | samba-cd1335e67dbfce0b6894ff209aa805d0314578da.tar.gz |
VFS: Modify rmdir to take a const struct smb_filename * instead of const char *
Preparing to reduce use of lp_posix_pathnames().
Uses the same techniques as commit 616d068f0cebb8e50a855b6e30f36fccb7f5a3c8
(synthetic_smb_fname()) to cope with modules that
modify the incoming pathname.
Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
Autobuild-User(master): Michael Adam <obnox@samba.org>
Autobuild-Date(master): Thu Feb 25 20:46:49 CET 2016 on sn-devel-144
Diffstat (limited to 'examples/VFS/skel_transparent.c')
-rw-r--r-- | examples/VFS/skel_transparent.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/VFS/skel_transparent.c b/examples/VFS/skel_transparent.c index ac8cbc85f30..ac82432df89 100644 --- a/examples/VFS/skel_transparent.c +++ b/examples/VFS/skel_transparent.c @@ -164,9 +164,10 @@ static int skel_mkdir(vfs_handle_struct *handle, return SMB_VFS_NEXT_MKDIR(handle, smb_fname, mode); } -static int skel_rmdir(vfs_handle_struct *handle, const char *path) +static int skel_rmdir(vfs_handle_struct *handle, + const struct smb_filename *smb_fname) { - return SMB_VFS_NEXT_RMDIR(handle, path); + return SMB_VFS_NEXT_RMDIR(handle, smb_fname); } static int skel_closedir(vfs_handle_struct *handle, DIR *dir) |