diff options
Diffstat (limited to 'examples/VFS/skel_transparent.c')
-rw-r--r-- | examples/VFS/skel_transparent.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/VFS/skel_transparent.c b/examples/VFS/skel_transparent.c index 10b10b88d6..646c6222ae 100644 --- a/examples/VFS/skel_transparent.c +++ b/examples/VFS/skel_transparent.c @@ -162,9 +162,11 @@ static ssize_t skel_recvfile(vfs_handle_struct *handle, int fromfd, files_struct return SMB_VFS_NEXT_RECVFILE(handle, fromfd, tofsp, offset, n); } -static int skel_rename(vfs_handle_struct *handle, const char *oldname, const char *newname) +static int skel_rename(vfs_handle_struct *handle, + const smb_filename *smb_fname_src, + const smb_filename *smb_fname_dst) { - return SMB_VFS_NEXT_RENAME(handle, oldname, newname); + return SMB_VFS_NEXT_RENAME(handle, smb_fname_src, smb_fname_dst); } static int skel_fsync(vfs_handle_struct *handle, files_struct *fsp) |