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/printing | |
parent | a8b01d1f3b4025af7e7a9d8b61deec6156737322 (diff) | |
download | samba-8951c8301ac8436d49e1641b2cc7775dda44d914.tar.gz samba-8951c8301ac8436d49e1641b2cc7775dda44d914.tar.bz2 samba-8951c8301ac8436d49e1641b2cc7775dda44d914.zip |
s3-secdesc: remove "typedef struct security_acl SEC_ACL".
Guenther
Diffstat (limited to 'source3/printing')
-rw-r--r-- | source3/printing/nt_printing.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index f83e4b4da3..d15faaabd5 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -2637,7 +2637,7 @@ WERROR spoolss_create_default_secdesc(TALLOC_CTX *mem_ctx, struct security_ace ace[5]; /* max number of ace entries */ int i = 0; uint32_t sa; - SEC_ACL *psa = NULL; + struct security_acl *psa = NULL; SEC_DESC *psd = NULL; DOM_SID adm_sid; size_t sd_size; @@ -5502,7 +5502,7 @@ WERROR nt_printing_setsec(const char *sharename, struct sec_desc_buf *secdesc_ct if (!secdesc_ctr->sd->owner_sid || !secdesc_ctr->sd->group_sid) { DOM_SID *owner_sid, *group_sid; - SEC_ACL *dacl, *sacl; + struct security_acl *dacl, *sacl; SEC_DESC *psd = NULL; size_t size; @@ -5589,7 +5589,7 @@ static struct sec_desc_buf *construct_default_printer_sdb(TALLOC_CTX *ctx) struct security_ace ace[5]; /* max number of ace entries */ int i = 0; uint32_t sa; - SEC_ACL *psa = NULL; + struct security_acl *psa = NULL; struct sec_desc_buf *sdb = NULL; SEC_DESC *psd = NULL; DOM_SID adm_sid; @@ -5755,7 +5755,7 @@ bool nt_printing_getsec(TALLOC_CTX *ctx, const char *sharename, struct sec_desc_ } if (DEBUGLEVEL >= 10) { - SEC_ACL *the_acl = (*secdesc_ctr)->sd->dacl; + struct security_acl *the_acl = (*secdesc_ctr)->sd->dacl; int i; DEBUG(10, ("secdesc_ctr for %s has %d aces:\n", |