From ebb3017cf08cc4dad3217db6cea404069b494b47 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Wed, 14 Sep 2011 07:33:13 +0930 Subject: tdb2: Make tdb1 share tdb_store flags, struct tdb_data and TDB_MAGIC_FOOD. Signed-off-by: Rusty Russell (Imported from CCAN commit 8a47d50d72ea62e378dc92b150c92c1317c73fa3) --- lib/tdb2/test/run-tdb1-die-during-transaction.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/tdb2/test/run-tdb1-die-during-transaction.c') diff --git a/lib/tdb2/test/run-tdb1-die-during-transaction.c b/lib/tdb2/test/run-tdb1-die-during-transaction.c index ae03d5f8b9..3097e13a33 100644 --- a/lib/tdb2/test/run-tdb1-die-during-transaction.c +++ b/lib/tdb2/test/run-tdb1-die-during-transaction.c @@ -82,7 +82,7 @@ static int ftruncate_check(int fd, off_t length) static bool test_death(enum operation op, struct agent *agent) { struct tdb1_context *tdb = NULL; - TDB1_DATA key; + TDB_DATA key; enum agent_return ret; int needed_recovery = 0; @@ -150,7 +150,7 @@ reset: /* Put key for agent to fetch. */ key.dsize = strlen(KEY_STRING); key.dptr = (void *)KEY_STRING; - if (tdb1_store(tdb, key, key, TDB1_INSERT) != 0) + if (tdb1_store(tdb, key, key, TDB_INSERT) != 0) return false; /* This is the key we insert in transaction. */ @@ -168,7 +168,7 @@ reset: if (tdb1_transaction_start(tdb) != 0) return false; - if (tdb1_store(tdb, key, key, TDB1_INSERT) != 0) + if (tdb1_store(tdb, key, key, TDB_INSERT) != 0) return false; if (tdb1_transaction_commit(tdb) != 0) -- cgit