summaryrefslogtreecommitdiff
path: root/source3/smbd/file_access.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-06-17 23:58:49 +0200
committerMichael Adam <obnox@samba.org>2008-06-17 23:58:49 +0200
commitb172eb1d478aef1f1e6c8ea40486fe9895b0f9de (patch)
tree7f9f7597b961b65b87861fa755087530e76a2030 /source3/smbd/file_access.c
parent92c983292e3dda06952ef6a01d3f2a23f1c323ec (diff)
downloadsamba-b172eb1d478aef1f1e6c8ea40486fe9895b0f9de.tar.gz
samba-b172eb1d478aef1f1e6c8ea40486fe9895b0f9de.tar.bz2
samba-b172eb1d478aef1f1e6c8ea40486fe9895b0f9de.zip
file_access: remove unneeded stat buf parameter from can_access_file_acl().
This is a security descriptor level function only. Michael (This used to be commit 5931540fa1681f026fed42df387d17e43c493c47)
Diffstat (limited to 'source3/smbd/file_access.c')
-rw-r--r--source3/smbd/file_access.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/smbd/file_access.c b/source3/smbd/file_access.c
index f72d6d1292..aaa114b950 100644
--- a/source3/smbd/file_access.c
+++ b/source3/smbd/file_access.c
@@ -24,7 +24,7 @@
#define DBGC_CLASS DBGC_ACLS
bool can_access_file_acl(struct connection_struct *conn,
- const char * fname, SMB_STRUCT_STAT *psbuf,
+ const char * fname,
uint32_t access_mask)
{
bool result;
@@ -114,7 +114,7 @@ bool can_delete_file_in_directory(connection_struct *conn, const char *fname)
/* now for ACL checks */
- return can_access_file_acl(conn, dname, &sbuf, FILE_WRITE_DATA);
+ return can_access_file_acl(conn, dname, FILE_WRITE_DATA);
}
/****************************************************************************
@@ -168,7 +168,7 @@ bool can_access_file_data(connection_struct *conn, const char *fname, SMB_STRUCT
/* now for ACL checks */
- return can_access_file_acl(conn, fname, psbuf, access_mask);
+ return can_access_file_acl(conn, fname, access_mask);
}
/****************************************************************************