Don't hide matchingRuleUse's description (now implemented)

Use attribute's cname not oid in matching rule uses
This commit is contained in:
Kurt Zeilenga 2002-08-31 18:41:21 +00:00
parent 966dd1bdca
commit 6c7104c82b
2 changed files with 4 additions and 4 deletions

View File

@ -398,7 +398,7 @@ matching_rule_use_init( void )
at->sat_cname.bv_val, 0 );
#endif
ldap_charray_add( &applies_oids,
at->sat_oid );
at->sat_cname.bv_val );
}
}
}
@ -427,7 +427,7 @@ matching_rule_use_init( void )
at->sat_cname.bv_val, 0 );
#endif
ldap_charray_add( &applies_oids,
at->sat_oid );
at->sat_cname.bv_val );
}
}
break;
@ -455,7 +455,7 @@ matching_rule_use_init( void )
at->sat_cname.bv_val, 0 );
#endif
ldap_charray_add( &applies_oids,
at->sat_oid );
at->sat_cname.bv_val );
}
}
break;

View File

@ -600,7 +600,7 @@ static struct slap_schema_ad_map {
"DESC 'RFC2252: matching rule uses' "
"EQUALITY objectIdentifierFirstComponentMatch "
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.31 USAGE directoryOperation )",
subentryAttribute, SLAP_AT_HIDE,
subentryAttribute, 0,
NULL, NULL, NULL, NULL, NULL,
offsetof(struct slap_internal_schema, si_ad_matchingRuleUse) },