mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 18:18:06 -05:00
Ensure that substrings are normalized properly by the routines
provided with the equality matching rule.
This commit is contained in:
parent
4ed66f93ec
commit
9cdeecd22d
1 changed files with 4 additions and 2 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue