summaryrefslogtreecommitdiff
path: root/lib/tdb2/test/run-tdb1-nested-transactions.c
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2011-09-14 07:46:13 +0930
committerRusty Russell <rusty@rustcorp.com.au>2011-09-14 07:46:13 +0930
commitf8dbfad23c9cab9d52b366d56e8491666a90f714 (patch)
treef06a3d6d5b73154cd0d6e667da7ada79724d559b /lib/tdb2/test/run-tdb1-nested-transactions.c
parent77d7ff6c34f16dec70da3f3abc1c19d217e944a9 (diff)
downloadsamba-f8dbfad23c9cab9d52b366d56e8491666a90f714.tar.gz
samba-f8dbfad23c9cab9d52b366d56e8491666a90f714.tar.bz2
samba-f8dbfad23c9cab9d52b366d56e8491666a90f714.zip
tdb2: make tdb1_open use attributes for logging, hash function.
This brings it closer to tdb_open(), so we can unify more easily. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> (Imported from CCAN commit a446f1d4d161d66bbb19ba2551cf6429a4865964)
Diffstat (limited to 'lib/tdb2/test/run-tdb1-nested-transactions.c')
-rw-r--r--lib/tdb2/test/run-tdb1-nested-transactions.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/tdb2/test/run-tdb1-nested-transactions.c b/lib/tdb2/test/run-tdb1-nested-transactions.c
index be4e926946..d5886123ea 100644
--- a/lib/tdb2/test/run-tdb1-nested-transactions.c
+++ b/lib/tdb2/test/run-tdb1-nested-transactions.c
@@ -3,7 +3,7 @@
#include <stdlib.h>
#include <stdbool.h>
#include <err.h>
-#include "tdb1-logging.h"
+#include "logging.h"
int main(int argc, char *argv[])
{
@@ -14,9 +14,9 @@ int main(int argc, char *argv[])
key.dsize = strlen("hi");
key.dptr = (void *)"hi";
- tdb = tdb1_open_ex("run-nested-transactions.tdb",
- 1024, TDB_DEFAULT,
- O_CREAT|O_TRUNC|O_RDWR, 0600, &taplogctx, NULL);
+ tdb = tdb1_open("run-nested-transactions.tdb",
+ 1024, TDB_DEFAULT,
+ O_CREAT|O_TRUNC|O_RDWR, 0600, &tap_log_attr);
ok1(tdb);
/* No nesting by default. */
@@ -42,8 +42,8 @@ int main(int argc, char *argv[])
free(data.dptr);
tdb1_close(tdb);
- tdb = tdb1_open_ex("run-nested-transactions.tdb",
- 1024, TDB_ALLOW_NESTING, O_RDWR, 0, &taplogctx, NULL);
+ tdb = tdb1_open("run-nested-transactions.tdb",
+ 1024, TDB_ALLOW_NESTING, O_RDWR, 0, &tap_log_attr);
ok1(tdb);
ok1(tdb1_transaction_start(tdb) == 0);