]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/filterentry.c
Set peeraddr also for IPv6, fixes ITS#1918
[openldap] / servers / slapd / filterentry.c
index 706e774841d2b27352eb4c35a18d386bf386e64b..af513e29c565ca7035d0529a0ca3db57d1ab9c12 100644 (file)
@@ -227,38 +227,12 @@ static int test_mra_filter(
 {
        Attribute       *a;
 
-       if( mra->ma_desc == NULL || mra->ma_dnattrs ) {
-               return LDAP_INAPPROPRIATE_MATCHING;
-       }
-
        if( !access_allowed( be, conn, op, e,
                mra->ma_desc, &mra->ma_value, ACL_SEARCH, NULL ) )
        {
                return LDAP_INSUFFICIENT_ACCESS;
        }
 
-       /* no matching rule was provided, use the attribute's
-          equality rule if it supports extensible matching. */
-       if( mra->ma_rule == NULL && 
-               mra->ma_desc->ad_type->sat_equality &&
-               mra->ma_desc->ad_type->sat_equality->smr_usage & SLAP_MR_EXT )
-       {
-               mra->ma_rule = mra->ma_desc->ad_type->sat_equality;
-
-       } else {
-               return LDAP_INAPPROPRIATE_MATCHING;
-       }
-
-       /* check to see if the matching rule is appropriate for
-          the syntax of the attribute.  This check will need
-          to be extended to support other kinds of extensible
-          matching rules */
-       if( strcmp(mra->ma_rule->smr_syntax->ssyn_oid,
-               mra->ma_desc->ad_type->sat_syntax->ssyn_oid) != 0)
-       {
-               return LDAP_INAPPROPRIATE_MATCHING;
-       }
-
        for(a = attrs_find( e->e_attrs, mra->ma_desc );
                a != NULL;
                a = attrs_find( a->a_next, mra->ma_desc ) )