Import ITS#3731 fix from HEAD

This commit is contained in:
Howard Chu 2005-06-09 07:40:19 +00:00
parent c201bdb1cc
commit f8030a05d8
2 changed files with 11 additions and 0 deletions

View file

@ -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)

View file

@ -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;
}