diff options
author | Tim Prouty <tprouty@samba.org> | 2009-07-02 09:27:44 -0700 |
---|---|---|
committer | Tim Prouty <tprouty@samba.org> | 2009-07-06 15:38:36 -0700 |
commit | 258952aa85f2a68e2d2362522f6114c6a439f1e3 (patch) | |
tree | 696d8f4425cb6d82c95c0923ba1b0405d39a1f5e /examples/VFS | |
parent | 133e915a81510f543f6458f377857d4f1b680970 (diff) | |
download | samba-258952aa85f2a68e2d2362522f6114c6a439f1e3.tar.gz samba-258952aa85f2a68e2d2362522f6114c6a439f1e3.tar.bz2 samba-258952aa85f2a68e2d2362522f6114c6a439f1e3.zip |
s3: Plumb smb_filename through SMB_VFS_UNLINK
Diffstat (limited to 'examples/VFS')
-rw-r--r-- | examples/VFS/skel_opaque.c | 5 | ||||
-rw-r--r-- | examples/VFS/skel_transparent.c | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/examples/VFS/skel_opaque.c b/examples/VFS/skel_opaque.c index 5d05be9aab..54f7ce8cf2 100644 --- a/examples/VFS/skel_opaque.c +++ b/examples/VFS/skel_opaque.c @@ -196,9 +196,10 @@ static int skel_lstat(vfs_handle_struct *handle, struct smb_filename *smb_fname) return vfswrap_lstat(NULL, smb_fname); } -static int skel_unlink(vfs_handle_struct *handle, const char *path) +static int skel_unlink(vfs_handle_struct *handle, + const struct smb_filename *smb_fname) { - return vfswrap_unlink(NULL, path); + return vfswrap_unlink(NULL, smb_fname); } static int skel_chmod(vfs_handle_struct *handle, const char *path, mode_t mode) diff --git a/examples/VFS/skel_transparent.c b/examples/VFS/skel_transparent.c index 646c6222ae..09a926ad43 100644 --- a/examples/VFS/skel_transparent.c +++ b/examples/VFS/skel_transparent.c @@ -189,9 +189,10 @@ static int skel_lstat(vfs_handle_struct *handle, struct smb_filename *smb_fname) return SMB_VFS_NEXT_LSTAT(handle, smb_fname); } -static int skel_unlink(vfs_handle_struct *handle, const char *path) +static int skel_unlink(vfs_handle_struct *handle, + const struct smb_filename *smb_fname) { - return SMB_VFS_NEXT_UNLINK(handle, path); + return SMB_VFS_NEXT_UNLINK(handle, smb_fname); } static int skel_chmod(vfs_handle_struct *handle, const char *path, mode_t mode) |