Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nadezhda Ivanova
OpenLDAP
Commits
7dda7a99
Commit
7dda7a99
authored
May 05, 2003
by
Kurt Zeilenga
Browse files
compute absolute t/f filter
parent
47e403ea
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
7dda7a99
...
...
@@ -14,6 +14,8 @@ OpenLDAP 2.1.18 Engineering
Fixed liblber multi-value decode bug (ITS#2458)
Fixed liblber over read bug (ITS#2465)
Fixed ldappasswd -y support (ITS#2441)
Documentation
Misc man page updates
OpenLDAP 2.1.17 Release
Fixed libldap_r thread pool context bug (ITS#2404)
...
...
servers/slapd/filter.c
View file @
7dda7a99
...
...
@@ -207,6 +207,10 @@ get_filter(
if
(
err
!=
LDAP_SUCCESS
)
{
break
;
}
if
(
f
->
f_and
==
NULL
)
{
f
->
f_choice
=
SLAPD_FILTER_COMPUTED
;
f
->
f_result
=
LDAP_COMPARE_TRUE
;
}
break
;
case
LDAP_FILTER_OR
:
...
...
@@ -220,6 +224,10 @@ get_filter(
if
(
err
!=
LDAP_SUCCESS
)
{
break
;
}
if
(
f
->
f_or
==
NULL
)
{
f
->
f_choice
=
SLAPD_FILTER_COMPUTED
;
f
->
f_result
=
LDAP_COMPARE_FALSE
;
}
break
;
case
LDAP_FILTER_NOT
:
...
...
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