diff options
Diffstat (limited to 'source3/modules/vfs_afsacl.c')
-rw-r--r-- | source3/modules/vfs_afsacl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/modules/vfs_afsacl.c b/source3/modules/vfs_afsacl.c index 1bf8366acc..6e66bf2e01 100644 --- a/source3/modules/vfs_afsacl.c +++ b/source3/modules/vfs_afsacl.c @@ -592,7 +592,7 @@ static size_t afs_to_nt_acl_common(struct afs_acl *afs_acl, { struct security_ace *nt_ace_list; DOM_SID owner_sid, group_sid; - SEC_ACL *psa = NULL; + struct security_acl *psa = NULL; int good_aces; size_t sd_size; TALLOC_CTX *mem_ctx = talloc_tos(); @@ -726,7 +726,7 @@ static bool nt_to_afs_acl(const char *filename, const struct security_ace *ace), struct afs_acl *afs_acl) { - const SEC_ACL *dacl; + const struct security_acl *dacl; int i; /* Currently we *only* look at the dacl */ |