Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
Autobuild-User(master): Ralph Böhme <slow@samba.org>
Autobuild-Date(master): Tue Sep 19 19:51:47 UTC 2023 on atb-devel-224
connection_struct *conn,
struct smb_request *req,
bool overwrite_if_exists,
- struct files_struct *old_dirfsp,
const struct smb_filename *smb_fname_old,
- struct files_struct *new_dirfsp,
struct smb_filename *smb_fname_new);
NTSTATUS smb_set_file_time(connection_struct *conn,
files_struct *fsp,
conn,
req,
false,
- NULL,
smb_fname_old,
- NULL,
smb_fname_new);
break;
case RENAME_FLAG_COPY:
conn,
req,
false,
- NULL,
smb_fname_old,
- NULL, /* new_dirfsp */
smb_fname_new);
}
connection_struct *conn,
struct smb_request *req,
bool overwrite_if_exists,
- struct files_struct *old_dirfsp,
const struct smb_filename *smb_fname_old,
- struct files_struct *new_dirfsp,
struct smb_filename *smb_fname_new)
{
NTSTATUS status = NT_STATUS_OK;
conn,
req,
overwrite,
- NULL, /* src_dirfsp */
fsp->fsp_name,
- NULL, /* dst_dirfsp */
smb_fname_dst);
TALLOC_FREE(smb_fname_dst);
conn,
req,
overwrite,
- NULL, /* src_dirfsp */
fsp->fsp_name,
- NULL, /* dst_dirfsp */
smb_fname_dst);
TALLOC_FREE(smb_fname_dst);