From 316e5e376c793d1f9882eebddbbd855cf121cce4 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Tue, 19 Jun 2012 12:43:10 +0930 Subject: lib/tdb_wrap: use tdb directly, not tdb_compat. Signed-off-by: Rusty Russell --- source3/lib/messages_local.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/lib') diff --git a/source3/lib/messages_local.c b/source3/lib/messages_local.c index e20024ae59..74b6a13764 100644 --- a/source3/lib/messages_local.c +++ b/source3/lib/messages_local.c @@ -218,7 +218,7 @@ static NTSTATUS messaging_tdb_fetch(TDB_CONTEXT *msg_tdb, return NT_STATUS_NO_MEMORY; } - data = tdb_fetch_compat(msg_tdb, key); + data = tdb_fetch(msg_tdb, key); if (data.dptr == NULL) { *presult = result; -- cgit