From e2a89d6ba76d632fe3319aac4575cebe0c060d6b Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Fri, 3 Dec 2010 09:33:57 +0100 Subject: s4:auth/sam.c - when printing out a string buffer we don't strictly need the width MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The precision (maximum numbers of characters) should be enough. Autobuild-User: Matthias Dieter Wallnöfer Autobuild-Date: Fri Dec 3 10:26:39 CET 2010 on sn-devel-104 --- source4/auth/sam.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/auth/sam.c') diff --git a/source4/auth/sam.c b/source4/auth/sam.c index 675c37682d..2b3ed91065 100644 --- a/source4/auth/sam.c +++ b/source4/auth/sam.c @@ -324,8 +324,8 @@ NTSTATUS authsam_expand_nested_groups(struct ldb_context *sam_ctx, dn = ldb_dn_from_ldb_val(tmp_ctx, sam_ctx, dn_val); if (dn == NULL) { talloc_free(tmp_ctx); - DEBUG(0, (__location__ ": we failed parsing DN %*.*s, so we cannot calculate the group token\n", - (int)dn_val->length, (int)dn_val->length, dn_val->data)); + DEBUG(0, (__location__ ": we failed parsing DN %.*s, so we cannot calculate the group token\n", + (int)dn_val->length, dn_val->data)); return NT_STATUS_INTERNAL_DB_CORRUPTION; } -- cgit