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
7cfb7111
Commit
7cfb7111
authored
Aug 26, 2009
by
Quanah Gibson-Mount
Browse files
ITS#6266
parent
69cd0731
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
7cfb7111
...
...
@@ -25,6 +25,7 @@ OpenLDAP 2.4.18 Engineering
Fixed slapd-relay response/cleanup callback mismatch (ITS#6154)
Fixed slapd-sql with baseObject query (ITS#6172)
Fixed slapd-sql with empty attribute (ITS#6163)
Fixed slapo-dynlist uninitialized var (ITS#6266)
Fixed slapo-pcache multiple enhancements (ITS#6152,ITS#5178)
Fixed slapo-ppolicy updating operational attributes (ITS#6265)
Fixed slapo-translucent attribute return (ITS#6254)
...
...
servers/slapd/overlays/dynlist.c
View file @
7cfb7111
...
...
@@ -957,7 +957,7 @@ dynlist_db_config(
ObjectClass
*
oc
;
AttributeDescription
*
ad
=
NULL
,
*
member_ad
=
NULL
;
dynlist_map_t
*
dlm
=
NULL
;
dynlist_map_t
*
dlm
=
NULL
,
*
dlml
=
NULL
;
const
char
*
text
;
if
(
argc
<
3
)
{
...
...
@@ -997,7 +997,6 @@ dynlist_db_config(
AttributeDescription
*
member_ad
=
NULL
;
AttributeDescription
*
mapped_ad
=
NULL
;
dynlist_map_t
*
dlmp
;
dynlist_map_t
*
dlml
;
/*
...
...
@@ -1032,7 +1031,6 @@ dynlist_db_config(
dlmp
=
(
dynlist_map_t
*
)
ch_calloc
(
1
,
sizeof
(
dynlist_map_t
)
);
if
(
dlm
==
NULL
)
{
dlm
=
dlmp
;
dlml
=
NULL
;
}
dlmp
->
dlm_member_ad
=
member_ad
;
dlmp
->
dlm_mapped_ad
=
mapped_ad
;
...
...
@@ -1406,7 +1404,7 @@ dl_cfgen( ConfigArgs *c )
struct
berval
nbase
=
BER_BVNULL
;
Filter
*
filter
=
NULL
;
struct
berval
uri
=
BER_BVNULL
;
dynlist_map_t
*
dlm
=
NULL
;
dynlist_map_t
*
dlm
=
NULL
,
*
dlml
=
NULL
;
const
char
*
text
;
oc
=
oc_find
(
c
->
argv
[
1
]
);
...
...
@@ -1534,7 +1532,6 @@ done_uri:;
AttributeDescription
*
member_ad
=
NULL
;
AttributeDescription
*
mapped_ad
=
NULL
;
dynlist_map_t
*
dlmp
;
dynlist_map_t
*
dlml
;
/*
...
...
@@ -1572,7 +1569,6 @@ done_uri:;
dlmp
=
(
dynlist_map_t
*
)
ch_calloc
(
1
,
sizeof
(
dynlist_map_t
)
);
if
(
dlm
==
NULL
)
{
dlm
=
dlmp
;
dlml
=
NULL
;
}
dlmp
->
dlm_member_ad
=
member_ad
;
dlmp
->
dlm_mapped_ad
=
mapped_ad
;
...
...
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