Use str2entry2

This commit is contained in:
Howard Chu 2005-01-24 03:42:56 +00:00
parent fcf787dc0f
commit 12510a2da7
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -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 ) {