]> git.ozlabs.org Git - ccan/blobdiff - ccan/tdb2/test/run-04-basichash.c
tdb2: use separate magic constants for chain, htable and ftable entries
[ccan] / ccan / tdb2 / test / run-04-basichash.c
index d53533983758cad8204652780bed2d1316022c97..ceee06835132fb54d1ab73d996e2377f0b2eaa33 100644 (file)
@@ -3,6 +3,7 @@
 #include <ccan/tdb2/lock.c>
 #include <ccan/tdb2/io.c>
 #include <ccan/tdb2/hash.c>
+#include <ccan/tdb2/transaction.c>
 #include <ccan/tdb2/check.c>
 #include <ccan/tap/tap.h>
 #include "logging.h"
@@ -64,7 +65,8 @@ int main(int argc, char *argv[])
                /* FIXME: Check lock length */
 
                /* Allocate a new record. */
-               new_off = alloc(tdb, key.dsize, dbuf.dsize, h.h, false);
+               new_off = alloc(tdb, key.dsize, dbuf.dsize, h.h,
+                               TDB_USED_MAGIC, false);
                ok1(new_off != TDB_OFF_ERR);
 
                /* We should be able to add it now. */
@@ -224,7 +226,8 @@ int main(int argc, char *argv[])
 
                /* We should be able to add it now. */
                /* Allocate a new record. */
-               new_off = alloc(tdb, key.dsize, dbuf.dsize, h.h, false);
+               new_off = alloc(tdb, key.dsize, dbuf.dsize, h.h,
+                               TDB_USED_MAGIC, false);
                ok1(new_off != TDB_OFF_ERR);
                ok1(add_to_hash(tdb, &h, new_off) == 0);