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
95dd239d
Commit
95dd239d
authored
Feb 08, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5284
parent
0a733890
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
95dd239d
...
...
@@ -4,6 +4,7 @@ OpenLDAP 2.4.8 Engineering
Fixed slapd include handling (ITS#5276)
Fixed slapd non-atomic signal variables (ITS#5248)
Fixed slapd-ldif delete (ITS#5265)
Fixed slapd overlay ordering when moving to slapd.d (ITS#5284)
Fixed test047 to skip if rwm is not available (ITS#5292)
Build Environment
Fixed libldap_r threaded library linking (ITS#4982)
...
...
servers/slapd/bconfig.c
View file @
95dd239d
...
...
@@ -797,6 +797,11 @@ typedef struct ServerID {
static
ServerID
*
sid_list
;
typedef
struct
voidList
{
struct
voidList
*
vl_next
;
void
*
vl_ptr
;
}
voidList
;
typedef
struct
ADlist
{
struct
ADlist
*
al_next
;
AttributeDescription
*
al_desc
;
...
...
@@ -5759,8 +5764,19 @@ config_back_db_open( BackendDB *be, ConfigReply *cr )
slap_overinst
*
on
;
Entry
*
oe
;
int
j
;
for
(
j
=
0
,
on
=
oi
->
oi_list
;
on
;
j
++
,
on
=
on
->
on_next
)
{
voidList
*
vl
,
*
v0
=
NULL
;
/* overlays are in LIFO order, must reverse stack */
for
(
on
=
oi
->
oi_list
;
on
;
on
=
on
->
on_next
)
{
vl
=
ch_malloc
(
sizeof
(
voidList
));
vl
->
vl_next
=
v0
;
v0
=
vl
;
vl
->
vl_ptr
=
on
;
}
for
(
j
=
0
;
vl
;
j
++
,
vl
=
v0
)
{
on
=
vl
->
vl_ptr
;
v0
=
vl
->
vl_next
;
ch_free
(
vl
);
if
(
on
->
on_bi
.
bi_db_config
&&
!
on
->
on_bi
.
bi_cf_ocs
)
{
Debug
(
LDAP_DEBUG_ANY
,
"WARNING: No dynamic config support for overlay %s.
\n
"
,
...
...
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