summaryrefslogtreecommitdiff
path: root/source3/torture
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 /source3/torture
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 'source3/torture')
-rw-r--r--source3/torture/mangle_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/torture/mangle_test.c b/source3/torture/mangle_test.c
index 36e4aafff05..1239f10630f 100644
--- a/source3/torture/mangle_test.c
+++ b/source3/torture/mangle_test.c
@@ -181,7 +181,7 @@ bool torture_mangle(int dummy)
}
/* 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;