mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-04 14:10:39 -05:00
Fix error messages
This commit is contained in:
parent
c1da85eba0
commit
f2223ede5b
1 changed files with 6 additions and 3 deletions
|
|
@ -385,7 +385,7 @@ retry: /* transaction retry */
|
|||
case DB_LOCK_NOTGRANTED:
|
||||
goto retry;
|
||||
default:
|
||||
rc = LDAP_OTHER;
|
||||
;
|
||||
}
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG ( OPERATION, ERR,
|
||||
|
|
@ -396,6 +396,7 @@ retry: /* transaction retry */
|
|||
db_strerror(rc), rc, 0 );
|
||||
#endif
|
||||
text = "DN index delete failed";
|
||||
rc = LDAP_OTHER;
|
||||
goto return_results;
|
||||
}
|
||||
|
||||
|
|
@ -407,7 +408,7 @@ retry: /* transaction retry */
|
|||
case DB_LOCK_NOTGRANTED:
|
||||
goto retry;
|
||||
default:
|
||||
rc = LDAP_OTHER;
|
||||
;
|
||||
}
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG ( OPERATION, ERR,
|
||||
|
|
@ -419,6 +420,7 @@ retry: /* transaction retry */
|
|||
db_strerror(rc), rc, 0 );
|
||||
#endif
|
||||
text = "entry delete failed";
|
||||
rc = LDAP_OTHER;
|
||||
goto return_results;
|
||||
}
|
||||
|
||||
|
|
@ -430,7 +432,7 @@ retry: /* transaction retry */
|
|||
case DB_LOCK_NOTGRANTED:
|
||||
goto retry;
|
||||
default:
|
||||
rc = LDAP_OTHER;
|
||||
;
|
||||
}
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG ( OPERATION, ERR,
|
||||
|
|
@ -440,6 +442,7 @@ retry: /* transaction retry */
|
|||
0, 0, 0 );
|
||||
#endif
|
||||
text = "entry index delete failed";
|
||||
rc = LDAP_OTHER;
|
||||
goto return_results;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue