diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-09-18 10:58:10 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-10-14 02:35:05 +0000 |
commit | 353d9bc3e42bc051119c205ac981fc819c6877b4 (patch) | |
tree | 6bcaf5daf50383e1b5f97c2575ee4ad917afbcdf /source4/ntvfs/posix | |
parent | 058daa1cf5742fc95fc15141bbd5fad96d02dee6 (diff) | |
download | samba-353d9bc3e42bc051119c205ac981fc819c6877b4.tar.gz samba-353d9bc3e42bc051119c205ac981fc819c6877b4.tar.bz2 samba-353d9bc3e42bc051119c205ac981fc819c6877b4.zip |
s4-acl Merge sec_access_check() with se_access_check() from source3/
Andrew Bartlett
Signed-off-by: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'source4/ntvfs/posix')
-rw-r--r-- | source4/ntvfs/posix/pvfs_acl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/ntvfs/posix/pvfs_acl.c b/source4/ntvfs/posix/pvfs_acl.c index 97c5341007..9fb2cdf87b 100644 --- a/source4/ntvfs/posix/pvfs_acl.c +++ b/source4/ntvfs/posix/pvfs_acl.c @@ -632,7 +632,7 @@ NTSTATUS pvfs_access_check(struct pvfs_state *pvfs, } /* check the acl against the required access mask */ - status = sec_access_check(sd, token, *access_mask, access_mask); + status = se_access_check(sd, token, *access_mask, access_mask); if (pvfs->ntvfs->ctx->protocol != PROTOCOL_SMB2) { /* on SMB, this bit is always granted, even if not |