]> git.sur5r.net Git - openldap/commitdiff
don't try to decide if uppercase based on LDAP matching rules
authorPierangelo Masarati <ando@openldap.org>
Fri, 9 Jan 2004 01:53:03 +0000 (01:53 +0000)
committerPierangelo Masarati <ando@openldap.org>
Fri, 9 Jan 2004 01:53:03 +0000 (01:53 +0000)
servers/slapd/back-sql/search.c

index 5b5248886fb07a176f4875a8d4085d46f3d91a29..e39f3c779231a7c2aa28213b2e9563e548961f2e 100644 (file)
@@ -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;
                }