diff options
-rw-r--r-- | source4/auth/sam.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |