From dd0e4c47e5004aaceb5ad64115cfe039edb3fe8b Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 26 Sep 2013 14:42:59 -0700 Subject: [PATCH] smbd: Remove unused create_options from open_mode_check Signed-off-by: Volker Lendecke Reviewed-by: Stefan Metzmacher Autobuild-User(master): Stefan Metzmacher Autobuild-Date(master): Sun Oct 13 14:35:26 CEST 2013 on sn-devel-104 --- source3/smbd/open.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/source3/smbd/open.c b/source3/smbd/open.c index 5c050871a9..f6df03595f 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -1123,7 +1123,6 @@ static NTSTATUS open_mode_check(connection_struct *conn, struct share_mode_lock *lck, uint32 access_mask, uint32 share_access, - uint32 create_options, bool *file_existed) { int i; @@ -2436,7 +2435,7 @@ static NTSTATUS open_file_ntcreate(connection_struct *conn, status = open_mode_check(conn, lck, access_mask, share_access, - create_options, &file_existed); + &file_existed); if (NT_STATUS_IS_OK(status)) { /* We might be going to allow this open. Check oplock @@ -3174,7 +3173,7 @@ static NTSTATUS open_directory(connection_struct *conn, status = open_mode_check(conn, lck, access_mask, share_access, - create_options, &dir_existed); + &dir_existed); if (!NT_STATUS_IS_OK(status)) { TALLOC_FREE(lck); -- 2.34.1