From ce535b4dd8c410d91f9c0fa2d1d973b4326af64d Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 7 Dec 2007 12:39:30 +0100 Subject: More parameter shuffling (This used to be commit 8f70f691ffa3e171a73d04a1c867aa6fca4d4583) --- source3/smbd/nttrans.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source3/smbd/nttrans.c') diff --git a/source3/smbd/nttrans.c b/source3/smbd/nttrans.c index 01ac1abeb0..a8afd580b3 100644 --- a/source3/smbd/nttrans.c +++ b/source3/smbd/nttrans.c @@ -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); -- cgit