Fix error messages

This commit is contained in:
Howard Chu 2003-03-12 21:16:43 +00:00
parent c1da85eba0
commit f2223ede5b

View file

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