X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;ds=sidebyside;f=ccan%2Ftdb2%2Ftest%2Frun-tdb1-zero-append.c;h=3541fe08c8abd93b832cf9359de813a456e5cb37;hb=a446f1d4d161d66bbb19ba2551cf6429a4865964;hp=1304bebdbdb208d4cbcade6a25e9d13b31cda255;hpb=22d0e0dc59fc9d7e0046fec6971ef478c2d604fd;p=ccan diff --git a/ccan/tdb2/test/run-tdb1-zero-append.c b/ccan/tdb2/test/run-tdb1-zero-append.c index 1304bebd..3541fe08 100644 --- a/ccan/tdb2/test/run-tdb1-zero-append.c +++ b/ccan/tdb2/test/run-tdb1-zero-append.c @@ -2,16 +2,16 @@ #include #include #include -#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. */