Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
openldap
OpenLDAP
Compare Revisions
63fdf7fde0fe757af7db998d0467efa374b575e5...46e93be3588f9817f8134b0872deb60e7e0330a2
Commits (2)
ITS
#9737
ldapdelete unable to prune LDAP subentries
· 99e6c70e
Anton Bobrov
authored
Nov 04, 2021
and
Quanah Gibson-Mount
committed
Mar 21, 2022
99e6c70e
ITS
#9737
· 46e93be3
Quanah Gibson-Mount
authored
Mar 21, 2022
46e93be3
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
46e93be3
...
...
@@ -2,6 +2,7 @@ OpenLDAP 2.6 Change Log
OpenLDAP 2.6.2 Engineering
Added slapd support for OpenSSL 3.0 (ITS#9436)
Fixed ldapdelete to prune LDAP subentries (ITS#9737)
Fixed libldap to drop connection when non-LDAP data is received (ITS#9803)
Fixed slapd slaptest conversion of olcLastBind (ITS#9808)
Fixed slapd to correctly init global_host earlier (ITS#9787)
...
...
clients/tools/ldapdelete.c
View file @
46e93be3
...
...
@@ -279,8 +279,13 @@ retry:;
}
rc
=
ldap_parse_result
(
ld
,
res
,
&
code
,
&
matcheddn
,
&
text
,
&
refs
,
&
ctrls
,
1
);
if
(
rc
!=
LDAP_SUCCESS
)
{
fprintf
(
stderr
,
"%s: ldap_parse_result: %s (%d)
\n
"
,
prog
,
ldap_err2string
(
rc
),
rc
);
return
rc
;
}
switch
(
r
c
)
{
switch
(
c
ode
)
{
case
LDAP_SUCCESS
:
break
;
...
...
@@ -292,9 +297,7 @@ retry:;
/* fallthru */
default:
fprintf
(
stderr
,
"%s: ldap_parse_result: %s (%d)
\n
"
,
prog
,
ldap_err2string
(
rc
),
rc
);
return
rc
;
break
;
}
if
(
code
!=
LDAP_SUCCESS
)
{
...
...