summaryrefslogtreecommitdiff
path: root/lib/tdb_wrap/tdb_wrap.c
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2012-06-19 12:43:10 +0930
committerRusty Russell <rusty@rustcorp.com.au>2012-06-19 05:38:07 +0200
commit316e5e376c793d1f9882eebddbbd855cf121cce4 (patch)
tree239d4fb35bc72910b2e02c97438f639812ab697c /lib/tdb_wrap/tdb_wrap.c
parentdf4a6e82280845668dee6fe10f2025c9fa2b958c (diff)
downloadsamba-316e5e376c793d1f9882eebddbbd855cf121cce4.tar.gz
samba-316e5e376c793d1f9882eebddbbd855cf121cce4.tar.bz2
samba-316e5e376c793d1f9882eebddbbd855cf121cce4.zip
lib/tdb_wrap: use tdb directly, not tdb_compat.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'lib/tdb_wrap/tdb_wrap.c')
-rw-r--r--lib/tdb_wrap/tdb_wrap.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/tdb_wrap/tdb_wrap.c b/lib/tdb_wrap/tdb_wrap.c
index 1540aa9033..b96469d735 100644
--- a/lib/tdb_wrap/tdb_wrap.c
+++ b/lib/tdb_wrap/tdb_wrap.c
@@ -91,6 +91,7 @@ static struct tdb_wrap_private *tdb_wrap_private_open(TALLOC_CTX *mem_ctx,
struct loadparm_context *lp_ctx)
{
struct tdb_wrap_private *result;
+ struct tdb_logging_context lctx;
result = talloc(mem_ctx, struct tdb_wrap_private);
if (result == NULL) {
@@ -117,8 +118,9 @@ static struct tdb_wrap_private *tdb_wrap_private_open(TALLOC_CTX *mem_ctx,
hash_size = lpcfg_parm_int(lp_ctx, NULL, "tdb_hashsize", base, 0);
}
- result->tdb = tdb_open_compat(name, hash_size, tdb_flags,
- open_flags, mode, tdb_wrap_log, NULL);
+ lctx.log_fn = tdb_wrap_log;
+ result->tdb = tdb_open_ex(name, hash_size, tdb_flags,
+ open_flags, mode, &lctx, NULL);
if (result->tdb == NULL) {
goto fail;
}