mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 10:07:56 -05:00
Minor fix to allow build with BDB 4
This commit is contained in:
parent
c96f8f168e
commit
ff701c286b
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue