]> git.ozlabs.org Git - ccan/blobdiff - ccan/tdb2/test/run-tdb1-die-during-transaction.c
tdb2: remove double-open detection for TDB1 databases.
[ccan] / ccan / tdb2 / test / run-tdb1-die-during-transaction.c
index 3097e13a3395896ebfffeb7c416beb9f1daaf9ec..1d03a30a1a02ce65b73f5258a1a227f4bade01b8 100644 (file)
@@ -81,7 +81,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;
+       struct tdb_context *tdb = NULL;
        TDB_DATA key;
        enum agent_return ret;
        int needed_recovery = 0;
@@ -89,12 +89,12 @@ static bool test_death(enum operation op, struct agent *agent)
        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) {
                /* We're partway through.  Simulate our death. */
-               close(tdb->fd);
+               close(tdb->file->fd);
                forget_locking1();
                in_transaction = false;