]> git.ozlabs.org Git - ccan/blobdiff - ccan/tdb2/test/run-tdb1-zero-append.c
tdb2: make tdb1_open use attributes for logging, hash function.
[ccan] / ccan / tdb2 / test / run-tdb1-zero-append.c
index 1304bebdbdb208d4cbcade6a25e9d13b31cda255..3541fe08c8abd93b832cf9359de813a456e5cb37 100644 (file)
@@ -2,16 +2,16 @@
 #include <ccan/tap/tap.h>
 #include <stdlib.h>
 #include <err.h>
-#include "tdb1-logging.h"
+#include "logging.h"
 
 int main(int argc, char *argv[])
 {
-       struct tdb1_context *tdb;
+       struct tdb_context *tdb;
        TDB_DATA key, data;
 
        plan_tests(4);
-       tdb = tdb1_open_ex(NULL, 1024, TDB_INTERNAL, O_CREAT|O_TRUNC|O_RDWR,
-                         0600, &taplogctx, NULL);
+       tdb = tdb1_open(NULL, 1024, TDB_INTERNAL, O_CREAT|O_TRUNC|O_RDWR,
+                       0600, &tap_log_attr);
        ok1(tdb);
 
        /* Tickle bug on appending zero length buffer to zero length buffer. */