Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
528c64d4
Commit
528c64d4
authored
Apr 15, 2010
by
Quanah Gibson-Mount
Browse files
ITS#6490
parent
89e1dcdb
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
528c64d4
...
...
@@ -14,8 +14,10 @@ OpenLDAP 2.4.22 Engineering
Fixed slapd syncrepl for unknown attrs and delta-sync (ITS#6473)
Fixed slapd-bdb contextCSN updates from updatedn (ITS#6469)
Fixed slapo-collect REP_ENTRY flag handling (ITS#5340,ITS#6423)
Fixed slapo-dds with NULL backend (ITS#6490)
Fixed slapo-dynlist REP_ENTRY flag handling (ITS#5340,ITS#6423)
Fixed slapo-pcache to release its own entries (ITS#6484)
Fixed slapo-pcache with NULL backend (ITS#6490)
Fixed slapo-rwm entry release handling (ITS#6484)
Fixed slapo-rwm olcRwmMap handling (ITS#6436)
Fixed slapo-rwm REP_ENTRY flag handling (ITS#5340,ITS#6423)
...
...
servers/slapd/overlays/dds.c
View file @
528c64d4
...
...
@@ -1821,6 +1821,12 @@ slap_exop_refresh(
op
->
o_req_dn
=
op
->
o_req_ndn
;
op
->
o_bd
=
select_backend
(
&
op
->
o_req_ndn
,
0
);
if
(
op
->
o_bd
==
NULL
)
{
send_ldap_error
(
op
,
rs
,
LDAP_NO_SUCH_OBJECT
,
"no global superior knowledge"
);
goto
done
;
}
if
(
!
SLAP_DYNAMIC
(
op
->
o_bd
)
)
{
send_ldap_error
(
op
,
rs
,
LDAP_UNAVAILABLE_CRITICAL_EXTENSION
,
"backend does not support dynamic directory services"
);
...
...
servers/slapd/overlays/pcache.c
View file @
528c64d4
...
...
@@ -5111,6 +5111,10 @@ pcache_exop_query_delete(
op
->
o_req_dn
=
op
->
o_req_ndn
;
op
->
o_bd
=
select_backend
(
&
op
->
o_req_ndn
,
0
);
if
(
op
->
o_bd
==
NULL
)
{
send_ldap_error
(
op
,
rs
,
LDAP_NO_SUCH_OBJECT
,
"no global superior knowledge"
);
}
rs
->
sr_err
=
backend_check_restrictions
(
op
,
rs
,
(
struct
berval
*
)
&
pcache_exop_QUERY_DELETE
);
if
(
rs
->
sr_err
!=
LDAP_SUCCESS
)
{
...
...
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