From: Jeremy Allison Date: Mon, 24 May 2021 23:13:14 +0000 (-0700) Subject: s3: smbd: Pass in the newly created parent_dir_fname and smb_fname_atname to open_dir... X-Git-Tag: tevent-0.11.0~611 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=00baf898e8c0d09ac2f6f712e9818dc35b05b380;p=thirdparty%2Fsamba.git s3: smbd: Pass in the newly created parent_dir_fname and smb_fname_atname to open_directory(). Not yet used. Signed-off-by: Jeremy Allison Reviewed-by: Ralph Boehme --- diff --git a/source3/smbd/open.c b/source3/smbd/open.c index 19f5184bb71..cbe8fa5ac8f 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -4572,6 +4572,8 @@ static NTSTATUS open_directory(connection_struct *conn, uint32_t create_disposition, uint32_t create_options, uint32_t file_attributes, + struct smb_filename *parent_dir_fname, + struct smb_filename *smb_fname_atname, int *pinfo, struct files_struct *fsp) { @@ -6073,6 +6075,8 @@ static NTSTATUS create_file_unixpath(connection_struct *conn, create_disposition, create_options, file_attributes, + parent_dir_fname, + smb_fname_atname, &info, fsp); } else { @@ -6125,6 +6129,8 @@ static NTSTATUS create_file_unixpath(connection_struct *conn, create_disposition, create_options, file_attributes, + parent_dir_fname, + smb_fname_atname, &info, fsp); }