Prepare for release of 2.0.9

This commit is contained in:
Kurt Zeilenga 2001-05-18 01:19:22 +00:00
parent 45e673b1bd
commit 7bc4de40ad
5 changed files with 9 additions and 4 deletions

View File

@ -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)

View File

@ -1 +1 @@
2.0.9-Engineering
2.0.9-Release

View 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

View 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

View 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 )