Skip to content
Snippets Groups Projects
Commit ceef243b authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

fix return

parent 1358893a
No related branches found
No related tags found
No related merge requests found
......@@ -440,12 +440,9 @@ Entry*
bdb_tool_entry_get( BackendDB *be, ID id )
{
Entry *e = NULL;
int rc;
rc = bdb_tool_entry_get_int( be, id, &e );
if ( rc == LDAP_SUCCESS ) {
return e;
}
(void)bdb_tool_entry_get_int( be, id, &e );
return e;
}
static int bdb_tool_next_id(
......
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