mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-23 08:09:34 -05:00
Fix previous commit, deleting under suffix...
This commit is contained in:
parent
826b177877
commit
5fd7534f79
1 changed files with 8 additions and 6 deletions
|
|
@ -206,12 +206,14 @@ retry: /* transaction retry */
|
||||||
}
|
}
|
||||||
|
|
||||||
rc = bdb_cache_find_id( op, ltid, eip->bei_id, &eip, 0, locker, &plock );
|
rc = bdb_cache_find_id( op, ltid, eip->bei_id, &eip, 0, locker, &plock );
|
||||||
if ( rc ) {
|
switch( rc ) {
|
||||||
switch( rc ) {
|
case DB_LOCK_DEADLOCK:
|
||||||
case DB_LOCK_DEADLOCK:
|
case DB_LOCK_NOTGRANTED:
|
||||||
case DB_LOCK_NOTGRANTED:
|
goto retry;
|
||||||
goto retry;
|
case 0:
|
||||||
}
|
case DB_NOTFOUND:
|
||||||
|
break;
|
||||||
|
default:
|
||||||
rs->sr_err = LDAP_OTHER;
|
rs->sr_err = LDAP_OTHER;
|
||||||
rs->sr_text = "internal error";
|
rs->sr_text = "internal error";
|
||||||
goto return_results;
|
goto return_results;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue