mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 18:18:06 -05:00
Import improved BDB version check
This commit is contained in:
parent
339c548257
commit
05540728b5
3 changed files with 240 additions and 231 deletions
5
CHANGES
5
CHANGES
|
|
@ -1,13 +1,16 @@
|
|||
OpenLDAP 2.2 Change Log
|
||||
|
||||
OpenLDAP 2.2.24 Engineering
|
||||
OpenLDAP 2.2.24 Release
|
||||
Fixed slapd "chldren:" typo (ITS#3560)
|
||||
Fixed slapd syncrepl consumer unclean shutdown (ITS#3546)
|
||||
Fixed slapd syncrepl provider sessionlog (ITS#3571)
|
||||
Fixed slapd connection_abandon processing (ITS#3534, 3546, 3571)
|
||||
Added libldap fast synchronous search result processing
|
||||
Fixed libldap fdset re-init for restart (ITS#3524)
|
||||
Build Environment
|
||||
Updated BDB version check (ITS#3581)
|
||||
Documentation
|
||||
Updated slapd(8) (ITS#3591)
|
||||
Updated README
|
||||
|
||||
OpenLDAP 2.2.23 Release
|
||||
|
|
|
|||
|
|
@ -368,7 +368,10 @@ main()
|
|||
|
||||
version = db_version( &major, &minor, &patch );
|
||||
|
||||
if( major != DB_VERSION_MAJOR || minor < DB_VERSION_MINOR ) {
|
||||
if( major != DB_VERSION_MAJOR ||
|
||||
minor != DB_VERSION_MINOR ||
|
||||
patch != DB_VERSION_PATCH )
|
||||
{
|
||||
printf("Berkeley DB version mismatch\n"
|
||||
"\theader: %s\n\tlibrary: %s\n",
|
||||
DB_VERSION_STRING, version);
|
||||
|
|
|
|||
Loading…
Reference in a new issue