X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Ftdb2%2Ftest%2Frun-tdb1-die-during-transaction.c;h=592f75731f264252c0f95aa267563282b0801d5e;hp=ae03d5f8b94d8cbc16b25b02e709167a8dbcf5a6;hb=22d0e0dc59fc9d7e0046fec6971ef478c2d604fd;hpb=fab544c24c1ad6523f95893abcaec4e6cce6c2b4 diff --git a/ccan/tdb2/test/run-tdb1-die-during-transaction.c b/ccan/tdb2/test/run-tdb1-die-during-transaction.c index ae03d5f8..592f7573 100644 --- a/ccan/tdb2/test/run-tdb1-die-during-transaction.c +++ b/ccan/tdb2/test/run-tdb1-die-during-transaction.c @@ -82,14 +82,14 @@ 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; current = target = 0; reset: unlink(TEST_DBNAME); - tdb = tdb1_open_ex(TEST_DBNAME, 1024, TDB1_NOMMAP, + tdb = tdb1_open_ex(TEST_DBNAME, 1024, TDB_NOMMAP, O_CREAT|O_TRUNC|O_RDWR, 0600, &taplogctx, NULL); if (setjmp(jmpbuf) != 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)