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
84a40529
Commit
84a40529
authored
Apr 15, 2010
by
Quanah Gibson-Mount
Browse files
ITS#6481
parent
528c64d4
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
84a40529
...
...
@@ -5,6 +5,7 @@ OpenLDAP 2.4.22 Engineering
Added slapd tools selective iterations (ITS#6442)
Added slapo-pbind
Fixed libldap GnuTLS serial length (ITS#6460)
Fixed slapd acl non-entry internal searches (ITS#6481)
Fixed slapd certificateListValidate (ITS#6466)
Fixed slapd empty URI parsing (ITS#6465)
Fixed slapd ignore controls with unrecognized flags (ITS#6480)
...
...
servers/slapd/acl.c
View file @
84a40529
...
...
@@ -2132,7 +2132,16 @@ acl_set_cb_gather( Operation *op, SlapReply *rs )
}
}
else
{
assert
(
rs
->
sr_type
==
REP_RESULT
);
switch
(
rs
->
sr_type
)
{
case
REP_SEARCHREF
:
case
REP_INTERMEDIATE
:
/* ignore */
break
;
default:
assert
(
rs
->
sr_type
==
REP_RESULT
);
break
;
}
}
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