mirror of
https://github.com/samba-team/samba.git
synced 2025-02-28 01:58:17 +03:00
More parameter shuffling
(This used to be commit 8f70f691ffa3e171a73d04a1c867aa6fca4d4583)
This commit is contained in:
parent
c55e44b6a7
commit
ce535b4dd8
@ -497,9 +497,9 @@ void reply_ntcreate_and_X(connection_struct *conn, struct smb_request *req)
|
||||
}
|
||||
}
|
||||
|
||||
status = create_file(conn, req, root_dir_fid, fname, flags,
|
||||
status = create_file(conn, req, root_dir_fid, fname,
|
||||
access_mask, share_access, create_disposition,
|
||||
create_options, file_attributes,
|
||||
create_options, file_attributes, flags,
|
||||
allocation_size, NULL, NULL,
|
||||
&fsp, &info, &oplock_granted, &sbuf);
|
||||
|
||||
@ -941,9 +941,9 @@ static void call_nt_transact_create(connection_struct *conn,
|
||||
return;
|
||||
}
|
||||
|
||||
status = create_file(conn, req, root_dir_fid, fname, flags,
|
||||
status = create_file(conn, req, root_dir_fid, fname,
|
||||
access_mask, share_access, create_disposition,
|
||||
create_options, file_attributes,
|
||||
create_options, file_attributes, flags,
|
||||
allocation_size, sd, ea_list,
|
||||
&fsp, &info, &oplock_granted, &sbuf);
|
||||
|
||||
|
@ -2448,12 +2448,12 @@ NTSTATUS create_file(connection_struct *conn,
|
||||
struct smb_request *req,
|
||||
uint16_t root_dir_fid,
|
||||
const char *fname,
|
||||
uint32_t flags,
|
||||
uint32_t access_mask,
|
||||
uint32_t share_access,
|
||||
uint32_t create_disposition,
|
||||
uint32_t create_options,
|
||||
uint32_t file_attributes,
|
||||
uint32_t flags,
|
||||
SMB_BIG_UINT allocation_size,
|
||||
struct security_descriptor *sd,
|
||||
struct ea_list *ea_list,
|
||||
|
Loading…
x
Reference in New Issue
Block a user