mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 08:39:37 -05:00
Fix last commit.
Also add uses where mr is the attribute's equality rule.
This commit is contained in:
parent
2908cdff11
commit
d6ac7ac544
1 changed files with 3 additions and 1 deletions
|
|
@ -355,7 +355,9 @@ matching_rule_use_init( void )
|
|||
|
||||
at = NULL;
|
||||
for ( at_start( &at ); at; at_next( &at ) ) {
|
||||
if( mr->smr_syntax == at->sat_syntax ) {
|
||||
if( mr->smr_syntax == at->sat_syntax ||
|
||||
mr == at->sat_equality )
|
||||
{
|
||||
ldap_charray_add( &applies_oids, at->sat_cname.bv_val );
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue