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
d2ea741d
Commit
d2ea741d
authored
Oct 14, 2006
by
Pierangelo Masarati
Browse files
import fix to ITS#4711
parent
855f2a31
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
d2ea741d
OpenLDAP 2.3 Change Log
Fixed slapd-meta DN massage error code handling (ITS#4711)
OpenLDAP 2.3.28 Engineering
Fixed libldap ldap.conf max line length (ITS#4669)
...
...
servers/slapd/back-meta/search.c
View file @
d2ea741d
...
...
@@ -154,16 +154,16 @@ meta_back_search_start(
*/
dc
->
ctx
=
"searchBase"
;
switch
(
ldap_back_dn_massage
(
dc
,
&
realbase
,
&
mbase
)
)
{
default
:
case
LDAP_SUCCESS
:
break
;
case
REWRITE_REGEXEC_UNWILLING
:
case
LDAP_UNWILLING_TO_PERFORM
:
rs
->
sr_err
=
LDAP_UNWILLING_TO_PERFORM
;
rs
->
sr_text
=
"Operation not allowed"
;
send_ldap_result
(
op
,
rs
);
return
META_SEARCH_ERR
;
case
REWRITE_REGEXEC_ERR
:
default
:
/*
* this target is no longer candidate
...
...
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