From: Julio Sánchez Fernández Date: Tue, 23 Oct 2001 13:35:54 +0000 (+0000) Subject: No code change, added a comment warning of a possible future difficulty. X-Git-Tag: LDBM_PRE_GIANT_RWLOCK~939 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=9752cea92cc802791c8897078315aa75119c5797;p=openldap No code change, added a comment warning of a possible future difficulty. Apparently, we refuse to index ;binary attributes. That is mostly bogus. Whether it is indexable or not depends on whether we know how to or not, nothing more. I.e., the existance of indexer and filter functions for the matching rules that are relevant to the attribute type. --- diff --git a/servers/slapd/value.c b/servers/slapd/value.c index 3d4e05acd6..0508b3590d 100644 --- a/servers/slapd/value.c +++ b/servers/slapd/value.c @@ -87,6 +87,7 @@ value_normalize( } /* we only support equality matching of binary attributes */ + /* This is suspect, flexible certificate matching will hit this */ if( slap_ad_is_binary( ad ) && usage != SLAP_MR_EQUALITY ) { *text = "inappropriate binary matching"; return LDAP_INAPPROPRIATE_MATCHING;