From 00baf898e8c0d09ac2f6f712e9818dc35b05b380 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 24 May 2021 16:13:14 -0700 Subject: [PATCH] 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 --- source3/smbd/open.c | 6 ++++++ 1 file changed, 6 insertions(+) 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); } -- 2.47.3