summaryrefslogtreecommitdiff
path: root/source4/torture/basic
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2015-03-12 13:56:09 +0000
committerMichael Adam <obnox@samba.org>2015-03-17 11:30:51 +0100
commit47795aef9dcead38a6365d655f82262cdca710c8 (patch)
treeff6ea83108ce810efb952a7c5554c0314085c81b /source4/torture/basic
parente3e0af14e176e69743223ebb43f21e4eef420ba2 (diff)
downloadsamba-47795aef9dcead38a6365d655f82262cdca710c8.tar.gz
lib: Remove tdb_open_compat
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source4/torture/basic')
-rw-r--r--source4/torture/basic/mangle_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/basic/mangle_test.c b/source4/torture/basic/mangle_test.c
index d549a0c1eb3..a15dc00939b 100644
--- a/source4/torture/basic/mangle_test.c
+++ b/source4/torture/basic/mangle_test.c
@@ -167,7 +167,7 @@ bool torture_mangle(struct torture_context *torture,
int i;
/* we will use an internal tdb to store the names we have used */
- tdb = tdb_open_compat(NULL, 100000, TDB_INTERNAL, 0, 0, NULL, NULL);
+ tdb = tdb_open(NULL, 100000, TDB_INTERNAL, 0, 0);
if (!tdb) {
printf("ERROR: Failed to open tdb\n");
return false;