mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-04 22:20:28 -05:00
Use str2entry2
This commit is contained in:
parent
fcf787dc0f
commit
12510a2da7
2 changed files with 2 additions and 2 deletions
|
|
@ -186,7 +186,7 @@ id2entry_rw( Backend *be, ID id, int rw )
|
|||
return( NULL );
|
||||
}
|
||||
|
||||
e = str2entry( data.dptr );
|
||||
e = str2entry2( data.dptr, 0 );
|
||||
ldbm_datum_free( db->dbc_db, data );
|
||||
ldbm_cache_close( be, db );
|
||||
|
||||
|
|
|
|||
|
|
@ -158,7 +158,7 @@ Entry* ldbm_tool_entry_get( BackendDB *be, ID id )
|
|||
return NULL;
|
||||
}
|
||||
|
||||
e = str2entry( data.dptr );
|
||||
e = str2entry2( data.dptr, 0 );
|
||||
ldbm_datum_free( id2entry->dbc_db, data );
|
||||
|
||||
if( e != NULL ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue