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
9cdeecd2
Commit
9cdeecd2
authored
Apr 25, 2003
by
Kurt Zeilenga
Browse files
Ensure that substrings are normalized properly by the routines
provided with the equality matching rule.
parent
4ed66f93
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/value.c
View file @
9cdeecd2
...
...
@@ -176,7 +176,8 @@ value_normalize(
mr
=
ad
->
ad_type
->
sat_ordering
;
break
;
case
SLAP_MR_SUBSTR
:
mr
=
ad
->
ad_type
->
sat_substr
;
/* normalize substrings per the the equality rule */
mr
=
ad
->
ad_type
->
sat_equality
;
break
;
case
SLAP_MR_EXT
:
default:
...
...
@@ -244,7 +245,8 @@ value_validate_normalize(
mr
=
ad
->
ad_type
->
sat_ordering
;
break
;
case
SLAP_MR_SUBSTR
:
mr
=
ad
->
ad_type
->
sat_substr
;
/* normalize substrings per the the equality rule */
mr
=
ad
->
ad_type
->
sat_equality
;
break
;
case
SLAP_MR_EXT
:
default:
...
...
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