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 --- source4/ntvfs/posix/posix_eadb.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source4/ntvfs') diff --git a/source4/ntvfs/posix/posix_eadb.c b/source4/ntvfs/posix/posix_eadb.c index 3f5a5b8e30..31c565c9c7 100644 --- a/source4/ntvfs/posix/posix_eadb.c +++ b/source4/ntvfs/posix/posix_eadb.c @@ -21,7 +21,6 @@ #include "includes.h" #include "lib/tdb_wrap/tdb_wrap.h" -#include "tdb_compat.h" #include "vfs_posix.h" #include "posix_eadb.h" @@ -130,7 +129,7 @@ NTSTATUS pull_xattr_blob_tdb_raw(struct tdb_wrap *ea_tdb, return status; } - tdata = tdb_fetch_compat(ea_tdb->tdb, tkey); + tdata = tdb_fetch(ea_tdb->tdb, tkey); if (tdata.dptr == NULL) { return NT_STATUS_NOT_FOUND; } -- cgit