diff options
author | Martin Hedenfal <martinh@cvs.openbsd.org> | 2010-11-03 12:01:33 +0000 |
---|---|---|
committer | Martin Hedenfal <martinh@cvs.openbsd.org> | 2010-11-03 12:01:33 +0000 |
commit | 7cee88a305f7706ee832a3f5bcd14db071ba7e40 (patch) | |
tree | 0778b259b51e7736da57a294cafb8c6a6dd54e2b | |
parent | c7ded80ed8b209cec5c6f8150ee21d2b606aa6ea (diff) |
caseExactIA5Match is not an appropriate matching rule for directory strings
(syntax oid 1.3.6.1.4.1.1466.115.121.1.15). Use caseExactMatch instead.
Prepares for upcoming validation of matching rules.
-rw-r--r-- | usr.sbin/ldapd/schema/core.schema | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ldapd/schema/core.schema b/usr.sbin/ldapd/schema/core.schema index 18d782dca35..890733cfe23 100644 --- a/usr.sbin/ldapd/schema/core.schema +++ b/usr.sbin/ldapd/schema/core.schema @@ -635,14 +635,14 @@ objectclass ( 1.3.6.1.4.1.250.3.15 NAME 'labeledURIObject' ################ rfc3045 attributetype ( 1.3.6.1.1.4 NAME 'vendorName' - EQUALITY 1.3.6.1.4.1.1466.109.114.1 + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE NO-USER-MODIFICATION USAGE dSAOperation ) attributetype ( 1.3.6.1.1.5 NAME 'vendorVersion' - EQUALITY 1.3.6.1.4.1.1466.109.114.1 + EQUALITY caseExactMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE NO-USER-MODIFICATION |