From c11887e3257c8dfe650f5004106a43a891ab4b31 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 27 Apr 2001 22:17:10 +0000 Subject: More debug %d -> %u issues. Jeremy. (This used to be commit 6fcb600dcd23c61d1a7d2ce8c2b7b2eea2e58623) --- source3/printing/nt_printing.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source3/printing') diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index 0aa3b96cdd..3b937c9534 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -3145,20 +3145,20 @@ BOOL nt_printing_getsec(TALLOC_CTX *ctx, char *printername, SEC_DESC_BUF **secde } if (DEBUGLEVEL >= 10) { - SEC_ACL *acl = (*secdesc_ctr)->sec->dacl; + SEC_ACL *the_acl = (*secdesc_ctr)->sec->dacl; int i; DEBUG(10, ("secdesc_ctr for %s has %d aces:\n", - printername, acl->num_aces)); + printername, the_acl->num_aces)); - for (i = 0; i < acl->num_aces; i++) { + for (i = 0; i < the_acl->num_aces; i++) { fstring sid_str; - sid_to_string(sid_str, &acl->ace[i].sid); + sid_to_string(sid_str, &the_acl->ace[i].sid); DEBUG(10, ("%s %d %d 0x%08x\n", sid_str, - acl->ace[i].type, acl->ace[i].flags, - acl->ace[i].info.mask)); + the_acl->ace[i].type, the_acl->ace[i].flags, + the_acl->ace[i].info.mask)); } } -- cgit