1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

smbd: remove redundant conn arg from fd_open_atomic()

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Ralph Boehme 2020-04-10 16:54:53 +02:00
parent 02f744a59b
commit c0551b22fd

View File

@ -1023,12 +1023,12 @@ static NTSTATUS change_dir_owner_to_parent(connection_struct *conn,
file was created or not.
****************************************************************************/
static NTSTATUS fd_open_atomic(struct connection_struct *conn,
files_struct *fsp,
static NTSTATUS fd_open_atomic(files_struct *fsp,
int flags,
mode_t mode,
bool *file_created)
{
struct connection_struct *conn = fsp->conn;
NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
NTSTATUS retry_status;
bool file_existed = VALID_STAT(fsp->fsp_name->st);
@ -1290,8 +1290,7 @@ static NTSTATUS open_file(files_struct *fsp,
* Actually do the open - if O_TRUNC is needed handle it
* below under the share mode lock.
*/
status = fd_open_atomic(conn,
fsp,
status = fd_open_atomic(fsp,
local_flags & ~O_TRUNC,
unx_mode,
p_file_created);