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,
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;
return status;
}
- return hardlink_internals(ctx, conn, req, false,
- smb_fname_old, smb_fname_new);
+ return hardlink_internals(ctx,
+ conn,
+ req,
+ false,
+ NULL, /* old_dirfsp */
+ smb_fname_old,
+ NULL, /* new_dirfsp */
+ smb_fname_new);
}
/****************************************************************************
conn,
req,
overwrite,
+ NULL, /* src_dirfsp */
fsp->fsp_name,
+ NULL, /* dst_dirfsp */
smb_fname_dst);
TALLOC_FREE(smb_fname_dst);