Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
James Rouzier
OpenLDAP
Commits
ea92405a
Commit
ea92405a
authored
Sep 09, 2021
by
Ondřej Kuzník
Committed by
Quanah Gibson-Mount
Sep 14, 2021
Browse files
ITS#8341 Allow normalised values for namingContexts in cn=monitor
parent
e4074464
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/back-monitor/database.c
View file @
ea92405a
...
...
@@ -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
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment