mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 18:18:06 -05:00
Import ITS#3731 fix from HEAD
This commit is contained in:
parent
c201bdb1cc
commit
f8030a05d8
2 changed files with 11 additions and 0 deletions
1
CHANGES
1
CHANGES
|
|
@ -2,6 +2,7 @@ OpenLDAP 2.2 Change Log
|
|||
|
||||
OpenLDAP 2.2.27 Engineering
|
||||
Fixed back-bdb/hdb slapcat checkpoint on close (ITS#3703)
|
||||
Fixed back-bdb/hdb internal error code assert (ITS#3731)
|
||||
Fixed back-ldap/back-meta debug output of NULL strings (ITS#3698)
|
||||
Fixed back-meta sizelimit bug (ITS#3720)
|
||||
Fixed back-meta/backglue sizelimit interaction (ITS#3724)
|
||||
|
|
|
|||
|
|
@ -260,6 +260,16 @@ static int indexer(
|
|||
}
|
||||
|
||||
done:
|
||||
switch( rc ) {
|
||||
/* The callers all know how to deal with these results */
|
||||
case 0:
|
||||
case DB_LOCK_DEADLOCK:
|
||||
case DB_LOCK_NOTGRANTED:
|
||||
break;
|
||||
/* Anything else is bad news */
|
||||
default:
|
||||
rc = LDAP_OTHER;
|
||||
}
|
||||
return rc;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue