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
openldap
OpenLDAP
Commits
bfe3d19e
Commit
bfe3d19e
authored
Sep 09, 2021
by
Ondřej Kuzník
Browse files
ITS
#8341
Allow normalised values for namingContexts in cn=monitor
parent
2958925c
Pipeline
#3486
passed with stage
in 52 minutes and 21 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
servers/slapd/back-monitor/database.c
View file @
bfe3d19e
...
...
@@ -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
Markdown
is supported
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