Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
84fba4c1
Commit
84fba4c1
authored
Sep 03, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5649
parent
7ea6caa9
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
84fba4c1
...
...
@@ -4,6 +4,7 @@ OpenLDAP 2.4.12 Engineering
Fixed liblutil executables on Windows (ITS#5604)
Fixed slapd custom attribute inheritance (ITS#5642)
Fixed slapd firstComponentMatch normalization (ITS#5634)
Fixed slapd overlay control registration (ITS#5649)
Fixed slapd socket closing on Windows (ITS#5606)
Fixed slapd-ldap,slapd-meta invalid filter behavior (ITS#5614)
Fixed slapd-meta quarantine behavior (ITS#5592)
...
...
servers/slapd/backover.c
View file @
84fba4c1
...
...
@@ -1063,7 +1063,7 @@ overlay_register_control( BackendDB *be, const char *oid )
/* add to all backends... */
LDAP_STAILQ_FOREACH
(
bd
,
&
backendDB
,
be_next
)
{
if
(
b
e
==
b
d
)
{
if
(
b
d
==
b
e
->
bd_self
)
{
gotit
=
1
;
}
...
...
@@ -1074,8 +1074,8 @@ overlay_register_control( BackendDB *be, const char *oid )
}
if
(
!
gotit
)
{
be
->
be_ctrls
[
cid
]
=
1
;
be
->
be_ctrls
[
SLAP_MAX_CIDS
]
=
1
;
be
->
bd_self
->
be_ctrls
[
cid
]
=
1
;
be
->
bd_self
->
be_ctrls
[
SLAP_MAX_CIDS
]
=
1
;
}
return
0
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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