]> git.sur5r.net Git - openldap/commitdiff
Prepare for release of 2.0.9
authorKurt Zeilenga <kurt@openldap.org>
Fri, 18 May 2001 01:19:22 +0000 (01:19 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Fri, 18 May 2001 01:19:22 +0000 (01:19 +0000)
CHANGES
build/version
doc/man/man3/lber-types.3
include/ldap.h
libraries/libldbm/ldbm.c

diff --git a/CHANGES b/CHANGES
index 50eb220b66d59b68d0c3ce8c399e6fce32f3f0d0..4cd515258595f4ad10f54ede7defdeca108d7909 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,10 +1,14 @@
 OpenLDAP 2.0 Change Log
 
 OpenLDAP 2.0.9 Engineering
+       Add slapd obsolete schema check
+       Add slapd collective schema check
+       Fix slapd printableString syntax bug
+       Fix ldbm bdb3 set_cachesize bug
        Build Environment
                Add nisMailAlias (ITS#876)
                Fix inet_ntop configure test (ITS#1146)
-               Fix thr_nt.c typo bug
+               Fix thr_nt.c syntax bug
 
 OpenLDAP 2.0.8 Release
        Fixed slapd empty OID value bug (ITS#882)
index 6eddfafbf0b979b23fab7b3600b93c7151967a5d..7a3fa68a630e8f0068825799e98d084ade9aecf8 100644 (file)
@@ -1 +1 @@
-2.0.9-Engineering
+2.0.9-Release
index ab9bf04059a4d3f7a5ab9d4416e290c6e0e1e819..1416280b8e84adea813b54c0992c3981ea3afb2b 100644 (file)
@@ -37,6 +37,7 @@ BER tag.  It is commonly equivalent to a
 .SH SEE ALSO
 .BR lber-encode (3)
 .BR lber-decode (3)
+.BR lber-memory (3)
 .LP
 .SH ACKNOWLEDGEMENTS
 .B     OpenLDAP
index d363e9befdd4665ce38d1a6a86a9e9d74b8b100c..6f00742f59a65b8cd9a45ce74a17cf31652c984d 100644 (file)
@@ -48,7 +48,7 @@ LDAP_BEGIN_DECL
  *     2.0.0  -> 20000
  *     2.3.16 -> 20316
  */
-#define LDAP_VENDOR_VERSION    20008
+#define LDAP_VENDOR_VERSION    20009
 
 /* OpenLDAP API Features */
 #define LDAP_API_FEATURE_X_OPENLDAP LDAP_VENDOR_VERSION
index c9a829df6d27a872cca30500a61dc008ebe21d84..a7c211629ddd55f535a793074e8b5757d39e0e4f 100644 (file)
@@ -247,7 +247,7 @@ ldbm_open( char *name, int rw, int mode, int dbcachesize )
 
        ret->set_pagesize( ret, DEFAULT_DB_PAGE_SIZE );
        ret->set_malloc( ret, ldbm_malloc );
-       ret->set_cachesize( ret, 0, dbcachesize, 0 );
+
        err = ret->open( ret, name, NULL, DB_TYPE, rw, mode);
        LDBM_UNLOCK;
        if ( err != 0 )