Skip to content
Snippets Groups Projects
Commit 693229df authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Add "objectclass: LDAPsubentry" to provide structure to subentries

parent 397294fc
No related branches found
No related tags found
No related merge requests found
......@@ -83,6 +83,10 @@ config_info(
val.bv_len = sizeof("top")-1;
attr_merge( e, "objectClass", vals );
val.bv_val = "LDAPsubentry";
val.bv_len = sizeof("LDAPsubentry")-1;
attr_merge( e, "objectClass", vals );
val.bv_val = "extenisbleObject";
val.bv_len = sizeof("extenisbleObject")-1;
attr_merge( e, "objectClass", vals );
......
......@@ -272,6 +272,10 @@ monitor_info(
val.bv_len = sizeof("top")-1;
attr_merge( e, "objectClass", vals );
val.bv_val = "LDAPsubentry";
val.bv_len = sizeof("LDAPsubentry")-1;
attr_merge( e, "objectClass", vals );
val.bv_val = "extensibleObject";
val.bv_len = sizeof("extensibleObject")-1;
attr_merge( e, "objectClass", vals );
......
......@@ -104,6 +104,10 @@ root_dse_info( Connection *conn, Operation *op, char **attrs, int attrsonly )
val.bv_len = sizeof("top")-1;
attr_merge( e, "objectClass", vals );
val.bv_val = "LDAPsubentry";
val.bv_len = sizeof("LDAPsubentry")-1;
attr_merge( e, "objectClass", vals );
val.bv_val = "extenisbleObject";
val.bv_len = sizeof("extenisbleObject")-1;
attr_merge( e, "objectClass", vals );
......
......@@ -1163,6 +1163,10 @@ schema_info( Connection *conn, Operation *op, char **attrs, int attrsonly )
val.bv_len = sizeof("top")-1;
attr_merge( e, "objectClass", vals );
val.bv_val = "LDAPsubentry";
val.bv_len = sizeof("LDAPsubentry")-1;
attr_merge( e, "objectClass", vals );
val.bv_val = "subschema";
val.bv_len = sizeof("subschema")-1;
attr_merge( e, "objectClass", vals );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment