From: Pierangelo Masarati Date: Mon, 15 Sep 2008 09:16:13 +0000 (+0000) Subject: don't hide standard track matching rules (more for ITS#5700) X-Git-Tag: ACLCHECK_0~1352 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=88055e8d548843d6d6956997899eb686a2842c3d;p=openldap don't hide standard track matching rules (more for ITS#5700) --- diff --git a/servers/slapd/schema_init.c b/servers/slapd/schema_init.c index 24ac340b3a..9f5e88e7b5 100644 --- a/servers/slapd/schema_init.c +++ b/servers/slapd/schema_init.c @@ -5360,6 +5360,7 @@ char *certificateListExactMatchSyntaxes[] = { #ifdef LDAP_COMP_MATCH char *componentFilterMatchSyntaxes[] = { "1.3.6.1.4.1.1466.115.121.1.8" /* certificate */, + "1.3.6.1.4.1.1466.115.121.1.9" /* certificateList */, NULL }; #endif @@ -5394,8 +5395,6 @@ char *objectIdentifierFirstComponentMatchSyntaxes[] = { * 2.5.13.33* keywordMatch * 2.5.13.36+ certificatePairExactMatch * 2.5.13.37+ certificatePairMatch - * 2.5.13.38+ certificateListExactMatch - * 2.5.13.39+ certificateListMatch * 2.5.13.40+ algorithmIdentifierMatch * 2.5.13.41* storedPrefixMatch * 2.5.13.42 attributeCertificateMatch @@ -5702,14 +5701,14 @@ static slap_mrule_defs_rec mrule_defs[] = { {"( 2.5.13.38 NAME 'certificateListExactMatch' " "SYNTAX 1.3.6.1.1.15.5 )", - SLAP_MR_EQUALITY | SLAP_MR_EXT | SLAP_MR_HIDE, certificateListExactMatchSyntaxes, + SLAP_MR_EQUALITY | SLAP_MR_EXT, certificateListExactMatchSyntaxes, NULL, certificateListExactNormalize, octetStringMatch, octetStringIndexer, octetStringFilter, NULL }, {"( 2.5.13.39 NAME 'certificateListMatch' " "SYNTAX 1.3.6.1.1.15.6 )", - SLAP_MR_EQUALITY | SLAP_MR_EXT | SLAP_MR_HIDE, NULL, + SLAP_MR_EQUALITY | SLAP_MR_EXT, NULL, NULL, NULL, NULL, NULL, NULL, NULL },