Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
f39ac87b
Commit
f39ac87b
authored
Nov 08, 2007
by
Quanah Gibson-Mount
Browse files
ITS#5212
Fix filter normalization
parent
d0050659
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
f39ac87b
...
...
@@ -3,6 +3,7 @@ OpenLDAP 2.4 Change Log
OpenLDAP 2.4.7 Engineering
Fixed slapd paged results control handling (ITS#5191)
Fixed slapd sasl-host parsing (ITS#5209)
Fixed slapd filter normalization (ITS#5212)
Fixed slapo-syncprov refresh and persist cookie sending (ITS#5210)
Fixed slapo-syncprov ignore invalid cookies (ITS#5211)
Documentation
...
...
servers/slapd/filter.c
View file @
f39ac87b
...
...
@@ -607,7 +607,8 @@ filter2bv_x( Operation *op, Filter *f, struct berval *fstr )
simple:
value
=
f
->
f_av_value
;
if
(
f
->
f_av_desc
->
ad_type
->
sat_equality
->
smr_usage
&
SLAP_MR_MUTATION_NORMALIZER
)
{
if
(
f
->
f_av_desc
->
ad_type
->
sat_equality
&&
f
->
f_av_desc
->
ad_type
->
sat_equality
->
smr_usage
&
SLAP_MR_MUTATION_NORMALIZER
)
{
f
->
f_av_desc
->
ad_type
->
sat_equality
->
smr_normalize
(
(
SLAP_MR_DENORMALIZE
|
SLAP_MR_VALUE_OF_ASSERTION_SYNTAX
),
NULL
,
NULL
,
&
f
->
f_av_value
,
&
value
,
op
->
o_tmpmemctx
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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