diff options
author | Volker Lendecke <vl@samba.org> | 2007-12-15 21:11:36 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2007-12-15 22:09:36 +0100 |
commit | 900288a2b86abd247f9eb4cd15dc5617a17cfef1 (patch) | |
tree | 4d8f4d5ec29c831932088db74773f9e338e86824 /source3/printing/nt_printing.c | |
parent | f498f661bcd6f2d97d55aa275dcd1eb2cbcda8a4 (diff) | |
download | samba-900288a2b86abd247f9eb4cd15dc5617a17cfef1.tar.gz samba-900288a2b86abd247f9eb4cd15dc5617a17cfef1.tar.xz samba-900288a2b86abd247f9eb4cd15dc5617a17cfef1.zip |
Replace sid_string_static by sid_string_dbg in DEBUGs
(This used to be commit bb35e794ec129805e874ceba882bcc1e84791a09)
Diffstat (limited to 'source3/printing/nt_printing.c')
-rw-r--r-- | source3/printing/nt_printing.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/source3/printing/nt_printing.c b/source3/printing/nt_printing.c index 55dd63be78..ec4e8c59d5 100644 --- a/source3/printing/nt_printing.c +++ b/source3/printing/nt_printing.c @@ -5569,11 +5569,8 @@ bool nt_printing_getsec(TALLOC_CTX *ctx, const char *sharename, SEC_DESC_BUF **s sharename, the_acl->num_aces)); for (i = 0; i < the_acl->num_aces; i++) { - fstring sid_str; - - sid_to_string(sid_str, &the_acl->aces[i].trustee); - - DEBUG(10, ("%s %d %d 0x%08x\n", sid_str, + DEBUG(10, ("%s %d %d 0x%08x\n", + sid_string_dbg(&the_acl->aces[i].trustee), the_acl->aces[i].type, the_acl->aces[i].flags, the_acl->aces[i].access_mask)); } |