Skip to content
Snippets Groups Projects
Commit f2223ede authored by Howard Chu's avatar Howard Chu
Browse files

Fix error messages

parent c1da85eb
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment