From 752e711cf5007a15bf2d168be9ba13c02ce0a140 Mon Sep 17 00:00:00 2001
From: Ludovic Poitou <ludovic.poitou@forgerock.com>
Date: Mon, 30 May 2011 12:47:19 +0000
Subject: [PATCH] Fix issue OPENDJ-126 - Bad syntax for lastChangeNumber, firstChangeNumber, and lastExternalChangelogCookie. firstChangeNumber and lastChangeNumber are now Integer, single valued. The lastExternalChangelogCookie is an opaque set of bytes. I agree it looks like a string, but it would be better handled as opaque, thus an OCTET STRING. I'm marking it SINGLE-VALUE though.

---
 opendj-sdk/opends/resource/schema/00-core.ldif |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/opendj-sdk/opends/resource/schema/00-core.ldif b/opendj-sdk/opends/resource/schema/00-core.ldif
index db53379..0e6df7b 100644
--- a/opendj-sdk/opends/resource/schema/00-core.ldif
+++ b/opendj-sdk/opends/resource/schema/00-core.ldif
@@ -159,13 +159,13 @@
 attributeTypes: ( 2.5.4.50 NAME 'uniqueMember' EQUALITY uniqueMemberMatch
   SYNTAX 1.3.6.1.4.1.1466.115.121.1.34 X-ORIGIN 'RFC 4519' )
 attributeTypes: ( 1.3.6.1.4.1.26027.1.1.585 NAME 'lastExternalChangelogCookie'
-  SYNTAX 1.3.6.1.4.1.1466.115.121.1.40
+  SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 SINGLE-VALUE
   USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' )
 attributeTypes: ( 1.3.6.1.4.1.26027.1.1.593 NAME 'firstChangeNumber'
-  SYNTAX 1.3.6.1.4.1.1466.115.121.1.40
+  SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 EQUALITY integerMatch SINGLE-VALUE
   USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' )
 attributeTypes: ( 1.3.6.1.4.1.26027.1.1.594 NAME 'lastChangeNumber'
-  SYNTAX 1.3.6.1.4.1.1466.115.121.1.40
+  SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 EQUALITY integerMatch SINGLE-VALUE
   USAGE directoryOperation X-ORIGIN 'OpenDS Directory Server' )
 attributeTypes: ( 2.5.4.51 NAME 'houseIdentifier' EQUALITY caseIgnoreMatch
   SUBSTR caseIgnoreSubstringsMatch SYNTAX 1.3.6.1.4.1.1466.115.121.1.15{32768}

--
Gitblit v1.10.0