mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-30 11:39:34 -05:00
don't try to decide if uppercase based on LDAP matching rules
This commit is contained in:
parent
15da03a587
commit
14da72a97a
1 changed files with 4 additions and 1 deletions
|
|
@ -476,8 +476,11 @@ backsql_process_filter( backsql_srch_info *bsi, Filter *f )
|
|||
matching_rule = f->f_mr_rule;
|
||||
|
||||
equality_match:;
|
||||
#if 0 /* always uppercase strings by now */
|
||||
if ( SLAP_MR_ASSOCIATED( matching_rule,
|
||||
bi->bi_caseIgnoreMatch ) ) {
|
||||
bi->bi_caseIgnoreMatch ) )
|
||||
#endif
|
||||
{
|
||||
casefold = 1;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue