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
8a34d439
Commit
8a34d439
authored
Nov 10, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5751
parent
2b4e2b97
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
8a34d439
...
...
@@ -19,6 +19,7 @@ OpenLDAP 2.4.13 Engineering
Added slapo-constraint support for constraining rename (ITS#5703)
Added slapo-constraint support for relax control (ITS#5705)
Added slapo-constraint "set" type (ITS#5702)
Fixed slapo-constraint filter parsing error (ITS#5751)
Fixed slapo-rwm rewriting undefined filter (ITS#5731)
Fixed slapo-rwm reusing freed filter (ITS#5732)
Added slapo-translucent try local bind when remote fails (ITS#5656)
...
...
servers/slapd/overlays/constraint.c
View file @
8a34d439
...
...
@@ -642,6 +642,7 @@ constraint_violation( constraint *c, struct berval *bv, Operation *op, SlapReply
Debug
(
LDAP_DEBUG_ANY
,
"%s constraint_violation uri filter=
\"
%s
\"
invalid
\n
"
,
op
->
o_log_prefix
,
filterstr
.
bv_val
,
0
);
rc
=
LDAP_OTHER
;
}
else
{
Debug
(
LDAP_DEBUG_TRACE
,
...
...
@@ -656,7 +657,7 @@ constraint_violation( constraint *c, struct berval *bv, Operation *op, SlapReply
}
op
->
o_tmpfree
(
filterstr
.
bv_val
,
op
->
o_tmpmemctx
);
if
((
rc
!=
LDAP_SUCCESS
)
&&
(
rc
!=
LDAP_NO_SUCH_OBJECT
))
{
if
((
rc
!=
LDAP_SUCCESS
)
&&
(
rc
!=
LDAP_NO_SUCH_OBJECT
))
{
return
rc
;
/* unexpected error */
}
...
...
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