From 4c82e8358ad8eaac008929aed4fc2a607afeca78 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 26 Sep 2013 14:35:15 -0700 Subject: [PATCH] smbd: Remove name_hash param from open_mode_check This came from delete_on_close handling which was factored out. Signed-off-by: Volker Lendecke Reviewed-by: Stefan Metzmacher --- 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 6255180ad1..5c050871a9 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -1121,7 +1121,6 @@ static bool has_delete_on_close(struct share_mode_lock *lck, static NTSTATUS open_mode_check(connection_struct *conn, struct share_mode_lock *lck, - uint32_t name_hash, uint32 access_mask, uint32 share_access, uint32 create_options, @@ -2435,7 +2434,7 @@ static NTSTATUS open_file_ntcreate(connection_struct *conn, return NT_STATUS_SHARING_VIOLATION; } - status = open_mode_check(conn, lck, fsp->name_hash, + status = open_mode_check(conn, lck, access_mask, share_access, create_options, &file_existed); @@ -3173,7 +3172,7 @@ static NTSTATUS open_directory(connection_struct *conn, return NT_STATUS_DELETE_PENDING; } - status = open_mode_check(conn, lck, fsp->name_hash, + status = open_mode_check(conn, lck, access_mask, share_access, create_options, &dir_existed); -- 2.34.1