1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

smb1_file_se_access_check() is now static to smbd/open.c

This commit is contained in:
Jeremy Allison 2011-11-04 13:11:01 -07:00
parent 1fab17de94
commit 07edf6c65e
2 changed files with 1 additions and 6 deletions

View File

@ -41,7 +41,7 @@ struct deferred_open_record {
SMB1 file varient of se_access_check. Never test FILE_READ_ATTRIBUTES.
****************************************************************************/
NTSTATUS smb1_file_se_access_check(struct connection_struct *conn,
static NTSTATUS smb1_file_se_access_check(struct connection_struct *conn,
const struct security_descriptor *sd,
const struct security_token *token,
uint32_t access_desired,

View File

@ -580,11 +580,6 @@ void reply_nttranss(struct smb_request *req);
/* The following definitions come from smbd/open.c */
NTSTATUS smb1_file_se_access_check(connection_struct *conn,
const struct security_descriptor *sd,
const struct security_token *token,
uint32_t access_desired,
uint32_t *access_granted);
NTSTATUS fd_close(files_struct *fsp);
void change_file_owner_to_parent(connection_struct *conn,
const char *inherit_from_dir,