1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

s3:registry: don't update the sorted subkeys cache any more in regdb_store_keys_internal2()

Pair-Programmed-With: Gregor Beck <gbeck@sernet.de>
This commit is contained in:
Michael Adam 2011-07-01 14:34:08 +02:00
parent 5b01a34ad7
commit eb797bd206

View File

@ -847,12 +847,6 @@ static WERROR regdb_store_keys_internal2(struct db_context *db,
dbuf.dsize = len;
werr = ntstatus_to_werror(dbwrap_store_bystring(db, keyname, dbuf,
TDB_REPLACE));
W_ERROR_NOT_OK_GOTO_DONE(werr);
/*
* recreate the sorted subkey cache for regdb_key_exists()
*/
werr = ntstatus_to_werror(create_sorted_subkeys(keyname));
done:
TALLOC_FREE(ctx);