From 8951c8301ac8436d49e1641b2cc7775dda44d914 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Tue, 18 May 2010 03:30:40 +0200 Subject: s3-secdesc: remove "typedef struct security_acl SEC_ACL". Guenther --- source3/smbd/posix_acls.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/smbd') diff --git a/source3/smbd/posix_acls.c b/source3/smbd/posix_acls.c index 7d8dbc1f10..24da3cf99e 100644 --- a/source3/smbd/posix_acls.c +++ b/source3/smbd/posix_acls.c @@ -1582,7 +1582,7 @@ static bool create_canon_ace_lists(files_struct *fsp, DOM_SID *pfile_grp_sid, canon_ace **ppfile_ace, canon_ace **ppdir_ace, - const SEC_ACL *dacl) + const struct security_acl *dacl) { bool all_aces_are_inherit_only = (fsp->is_directory ? True : False); canon_ace *file_ace = NULL; @@ -3179,7 +3179,7 @@ static NTSTATUS posix_get_nt_acl_common(struct connection_struct *conn, DOM_SID owner_sid; DOM_SID group_sid; size_t sd_size = 0; - SEC_ACL *psa = NULL; + struct security_acl *psa = NULL; size_t num_acls = 0; size_t num_def_acls = 0; size_t num_aces = 0; -- cgit