mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-31 12:09:35 -05:00
extensibleObject allows all
This commit is contained in:
parent
735180918d
commit
814e6a305f
1 changed files with 4 additions and 0 deletions
|
|
@ -572,6 +572,10 @@ int oc_check_allowed(
|
|||
for ( i = 0; socs[i]; i++ ) {
|
||||
/* if we know about the oc */
|
||||
ObjectClass *oc = socs[i];
|
||||
/* extensibleObject allows all */
|
||||
if ( oc == slap_schema.si_oc_extensibleObject ) {
|
||||
return LDAP_SUCCESS;
|
||||
}
|
||||
if ( oc != NULL && oc->soc_kind != LDAP_SCHEMA_ABSTRACT &&
|
||||
( sc == NULL || oc->soc_kind == LDAP_SCHEMA_AUXILIARY ))
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue