mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
ITS#8341 Allow normalised values for namingContexts in cn=monitor
This commit is contained in:
parent
2958925ca1
commit
bfe3d19e95
1 changed files with 3 additions and 3 deletions
|
|
@ -168,7 +168,7 @@ monitor_subsys_overlay_init_one(
|
|||
|
||||
} else {
|
||||
attr_merge( e_overlay, slap_schema.si_ad_namingContexts,
|
||||
be->be_suffix, NULL );
|
||||
be->be_suffix, be->be_nsuffix );
|
||||
}
|
||||
|
||||
mp_overlay = monitor_entrypriv_create();
|
||||
|
|
@ -254,9 +254,9 @@ monitor_subsys_database_init_one(
|
|||
|
||||
} else {
|
||||
attr_merge( e, slap_schema.si_ad_namingContexts,
|
||||
be->be_suffix, NULL );
|
||||
be->be_suffix, be->be_nsuffix );
|
||||
attr_merge( e_database, slap_schema.si_ad_namingContexts,
|
||||
be->be_suffix, NULL );
|
||||
be->be_suffix, be->be_nsuffix );
|
||||
|
||||
if ( SLAP_GLUE_SUBORDINATE( be ) ) {
|
||||
BackendDB *sup_be = select_backend( &be->be_nsuffix[ 0 ], 1 );
|
||||
|
|
|
|||
Loading…
Reference in a new issue