Minor fix to allow build with BDB 4

This commit is contained in:
Howard Chu 2001-12-07 03:56:16 +00:00
parent c96f8f168e
commit ff701c286b

View file

@ -315,7 +315,7 @@ ldbm_open( DB_ENV *env, char *name, int rw, int mode, int dbcachesize )
return NULL;
}
#if DB_VERSION_MINOR < 3
#if DB_VERSION_MAJOR == 3 && DB_VERSION_MINOR < 3
ret->set_malloc( ret, ldbm_malloc );
#endif