mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-11 14:53:13 -05:00
Fix handling of SYNTAX_CES by making use of some matching rules in
X.520 that were not inherited by RFC2252. Fill in properly the matching rule oids when converting an attribute type definition in the old format.
This commit is contained in:
parent
66279c696c
commit
9ec2849a6d
1 changed files with 7 additions and 4 deletions
|
|
@ -227,18 +227,22 @@ attr_syntax_config(
|
|||
strcasecmp( argv[lasti], "cis" ) == 0 ) {
|
||||
at->at_syntax_oid = "1.3.6.1.4.1.1466.115.121.1.15";
|
||||
at->at_equality_oid = "2.5.13.2";
|
||||
at->at_ordering_oid = "2.5.13.3";
|
||||
at->at_substr_oid = "2.5.13.4";
|
||||
} else if ( strcasecmp( argv[lasti], "telephone" ) == 0 ||
|
||||
strcasecmp( argv[lasti], "tel" ) == 0 ) {
|
||||
at->at_syntax_oid = "1.3.6.1.4.1.1466.115.121.1.50";
|
||||
at->at_equality_oid = "2.5.13.20";
|
||||
at->at_substr_oid = "2.5.13.21";
|
||||
} else if ( strcasecmp( argv[lasti], "dn" ) == 0 ) {
|
||||
at->at_syntax_oid = "1.3.6.1.4.1.1466.115.121.1.12";
|
||||
at->at_equality_oid = "2.5.13.1";
|
||||
} else if ( strcasecmp( argv[lasti], "caseexactstring" ) == 0 ||
|
||||
strcasecmp( argv[lasti], "ces" ) == 0 ) {
|
||||
at->at_syntax_oid = "1.3.6.1.4.1.1466.115.121.1.15";
|
||||
/* notice: this is caseExactIA5Match */
|
||||
at->at_equality_oid = "1.3.6.1.4.1.1466.109.114.1";
|
||||
at->at_equality_oid = "2.5.13.5";
|
||||
at->at_ordering_oid = "2.5.13.6";
|
||||
at->at_substr_oid = "2.5.13.7";
|
||||
} else if ( strcasecmp( argv[lasti], "binary" ) == 0 ||
|
||||
strcasecmp( argv[lasti], "bin" ) == 0 ) {
|
||||
at->at_syntax_oid = "1.3.6.1.4.1.1466.115.121.1.5";
|
||||
|
|
@ -514,8 +518,7 @@ at_add(
|
|||
if ( !strcmp(at->at_syntax_oid,
|
||||
"1.3.6.1.4.1.1466.115.121.1.15") ) {
|
||||
if ( at->at_equality_oid &&
|
||||
!strcmp(at->at_equality_oid,
|
||||
"1.3.6.1.4.1.1466.109.114.1") ) {
|
||||
!strcmp(at->at_equality_oid, "2.5.13.5") ) {
|
||||
sat->sat_syntax_compat = SYNTAX_CES;
|
||||
} else {
|
||||
sat->sat_syntax_compat = SYNTAX_CIS;
|
||||
|
|
|
|||
Loading…
Reference in a new issue