Skip to content
Snippets Groups Projects
Commit 79035849 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Use idl_fetch_one() to fetch single id_blocks instead of separate

ldbm_cache_fetch() codes.
parent e552c315
No related branches found
No related tags found
No related merge requests found
......@@ -107,19 +107,12 @@ idl_fetch(
char *kstr;
int i, nids;
ldbm_datum_init( data );
/* Debug( LDAP_DEBUG_TRACE, "=> idl_fetch\n", 0, 0, 0 ); */
data = ldbm_cache_fetch( db, key );
idl = idl_fetch_one( be, db, key );
if ( data.dptr == NULL ) {
return( NULL );
if ( idl == NULL ) {
return NULL;
}
idl = idl_dup( (ID_BLOCK *) data.dptr );
ldbm_datum_free( db->dbc_db, data);
if ( ID_BLOCK_ALLIDS(idl) ) {
/* all ids block */
/* make sure we have the current value of highest 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