summaryrefslogtreecommitdiff
path: root/source4/torture/ldap/schema.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/torture/ldap/schema.c')
-rw-r--r--source4/torture/ldap/schema.c15
1 files changed, 13 insertions, 2 deletions
diff --git a/source4/torture/ldap/schema.c b/source4/torture/ldap/schema.c
index 4186301c3b..e80b5b0233 100644
--- a/source4/torture/ldap/schema.c
+++ b/source4/torture/ldap/schema.c
@@ -339,12 +339,23 @@ static BOOL test_dump_sorted_syntax(struct ldb_context *ldb, struct test_rootDSE
"2.5.5.17"
};
+ d_printf("Dumping attribute syntaxes\n");
+
for (i=0; i < ARRAY_SIZE(syntaxes); i++) {
for (a=schema->attributes; a; a = a->next) {
+ char *om_hex;
+
if (strcmp(syntaxes[i], a->attributeSyntax_oid) != 0) continue;
- d_printf("attr[%4u]: %s %u '%s'\n", a_i++,
+
+ om_hex = data_blob_hex_string(ldb, &a->oMObjectClass);
+ if (!om_hex) {
+ return False;
+ }
+
+ d_printf("attr[%4u]: %s %u '%s' '%s'\n", a_i++,
a->attributeSyntax_oid, a->oMSyntax,
- a->lDAPDisplayName);
+ om_hex, a->lDAPDisplayName);
+ talloc_free(om_hex);
}
}