Update CHANGES in preparation for release.

This commit is contained in:
Kurt Zeilenga 1999-05-24 23:39:21 +00:00
parent 947b6422d5
commit 0ac8b4413f
2 changed files with 17 additions and 0 deletions

12
CHANGES
View File

@ -1,5 +1,17 @@
OpenLDAP Change Log
Changes included in OpenLDAP 1.2 Release Engineering
CVS Tag: OPENLDAP_REL_ENG_1_2_1
Fixed ud cp == NULL bug
Fixed ldbm Berkeley DB 2.4 mp_pool init problem
Fixed slapd modrdn
Fixed slapd command line usage and log level option
Fixed slurpd ldap_pvt_thread_create argument typo
Added modrdn test.
Build environment
Mixed 'make veryclean' doc directory problem
Fixed <ac/string.h> strdup declaration issues
Changes included in OpenLDAP 1.2.1
CVS Tag: OPENLDAP_REL_ENG_1_2_1
Updated ctype and string generic headers

View File

@ -142,11 +142,16 @@ ldbm_open( char *name, int rw, int mode, int dbcachesize )
dbinfo.db_pagesize = DEFAULT_DB_PAGE_SIZE;
dbinfo.db_malloc = ldbm_malloc;
#if defined( DB_VERSION_MAJOR ) && defined( DB_VERSION_MINOR ) \
&& DB_VERSION_MAJOR == 2 && DB_VERSION_MINOR != 4
if( ldbm_Env.mp_info == NULL ) {
/* set a cachesize if we aren't using a memory pool */
dbinfo.db_cachesize = dbcachesize;
}
#endif
LDBM_LOCK;
(void) db_open( name, DB_TYPE, rw, mode, &ldbm_Env, &dbinfo, &ret );
LDBM_UNLOCK;