summaryrefslogtreecommitdiff
path: root/source3/smbd/open.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2011-11-04 15:39:55 -0700
committerJeremy Allison <jra@samba.org>2011-11-04 15:39:55 -0700
commit48512193338663df5dc4cd52179bc94337eb7113 (patch)
tree5c5511b80437522599f1ccd44e02ead89fdfcd0a /source3/smbd/open.c
parenta30f84a21c9d4e702ae0faace9bdf435b9882af7 (diff)
downloadsamba-48512193338663df5dc4cd52179bc94337eb7113.tar.gz
samba-48512193338663df5dc4cd52179bc94337eb7113.tar.bz2
samba-48512193338663df5dc4cd52179bc94337eb7113.zip
Add const to the smb_filename argument of smbd_check_access_rights().
Diffstat (limited to 'source3/smbd/open.c')
-rw-r--r--source3/smbd/open.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/open.c b/source3/smbd/open.c
index bd022ecd59..2f79908b62 100644
--- a/source3/smbd/open.c
+++ b/source3/smbd/open.c
@@ -44,7 +44,7 @@ struct deferred_open_record {
****************************************************************************/
static bool parent_override_delete(connection_struct *conn,
- struct smb_filename *smb_fname,
+ const struct smb_filename *smb_fname,
uint32_t access_mask,
uint32_t rejected_mask)
{
@@ -61,7 +61,7 @@ static bool parent_override_delete(connection_struct *conn,
****************************************************************************/
NTSTATUS smbd_check_access_rights(struct connection_struct *conn,
- struct smb_filename *smb_fname,
+ const struct smb_filename *smb_fname,
uint32_t access_mask)
{
/* Check if we have rights to open. */