diff options
author | Günther Deschner <gd@samba.org> | 2010-05-18 03:30:40 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-05-18 12:30:12 +0200 |
commit | 8951c8301ac8436d49e1641b2cc7775dda44d914 (patch) | |
tree | c85428c92ec6d4878b5628c83a57049a335b184b /source3/modules/vfs_afsacl.c | |
parent | a8b01d1f3b4025af7e7a9d8b61deec6156737322 (diff) | |
download | samba-8951c8301ac8436d49e1641b2cc7775dda44d914.tar.gz |
s3-secdesc: remove "typedef struct security_acl SEC_ACL".
Guenther
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 1bf8366accc..6e66bf2e01d 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 */ |