Ensure that substrings are normalized properly by the routines

provided with the equality matching rule.
This commit is contained in:
Kurt Zeilenga 2003-04-25 17:54:16 +00:00
parent 4ed66f93ec
commit 9cdeecd22d

View file

@ -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: