mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 08:39:37 -05:00
ITS#3369 - be is seldom NULL, now test for be == frontendDB
This commit is contained in:
parent
0c9c90a3e9
commit
02cf375603
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ slap_operational_subschemaSubentry( Backend *be )
|
|||
Attribute *a;
|
||||
|
||||
/* The backend wants to take care of it */
|
||||
if ( be && be->be_schemadn.bv_val ) return NULL;
|
||||
if ( be && be!= frontendDB && be->be_schemadn.bv_val ) return NULL;
|
||||
|
||||
a = ch_malloc( sizeof( Attribute ) );
|
||||
a->a_desc = slap_schema.si_ad_subschemaSubentry;
|
||||
|
|
|
|||
Loading…
Reference in a new issue