diff options
author | Jeremy Allison <jra@samba.org> | 2000-12-11 19:24:59 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2000-12-11 19:24:59 +0000 |
commit | a95ccc27790cb8275f44df76fa6dc33a6a17c12e (patch) | |
tree | 9d850e8e8a7492fe566c5e40cec75ddbc64fca46 /source3/printing | |
parent | c9d38e177bf6b519458a5ba497f69f3336366c6f (diff) | |
download | samba-a95ccc27790cb8275f44df76fa6dc33a6a17c12e.tar.gz samba-a95ccc27790cb8275f44df76fa6dc33a6a17c12e.tar.bz2 samba-a95ccc27790cb8275f44df76fa6dc33a6a17c12e.zip |
Adding in debug for SD's.
Jeremy.
(This used to be commit a19f936b644fedc4c59ada5f12172abed9894910)
Diffstat (limited to 'source3/printing')
-rw-r--r-- | source3/printing/nt_printing.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index b3b942d2ed..2ad2e564ec 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -2889,6 +2889,23 @@ BOOL nt_printing_getsec(char *printername, SEC_DESC_BUF **secdesc_ctr) } } + if (DEBUGLEVEL >= 10) { + SEC_ACL *acl = (*secdesc_ctr)->sec->dacl; + int i; + + DEBUG(10, ("secdesc_ctr for %s has %d aces:\n", + printername, acl->num_aces)); + + for (i = 0; i < acl->num_aces; i++) { + fstring sid_str; + + sid_to_string(sid_str, &acl->ace[i].sid); + + DEBUG(10, ("%s 0x%08x\n", sid_str, + acl->ace[i].info.mask)); + } + } + prs_mem_free(&ps); talloc_destroy(mem_ctx); return True; |