1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-29 15:42:04 +03:00

s3-secdesc: remove "typedef struct security_acl SEC_ACL".

Guenther
This commit is contained in:
Günther Deschner
2010-05-18 03:30:40 +02:00
parent a8b01d1f3b
commit 8951c8301a
23 changed files with 58 additions and 64 deletions

View File

@ -229,7 +229,7 @@ SEC_DESC *get_share_security_default( TALLOC_CTX *ctx, size_t *psize, uint32 def
{
uint32_t sa;
struct security_ace ace;
SEC_ACL *psa = NULL;
struct security_acl *psa = NULL;
SEC_DESC *psd = NULL;
uint32 spec_access = def_access;
@ -436,7 +436,7 @@ bool parse_usershare_acl(TALLOC_CTX *ctx, const char *acl_str, SEC_DESC **ppsd)
const char *pacl = acl_str;
int num_aces = 0;
struct security_ace *ace_list = NULL;
SEC_ACL *psa = NULL;
struct security_acl *psa = NULL;
SEC_DESC *psd = NULL;
size_t sd_size = 0;
int i;