summaryrefslogtreecommitdiff
path: root/source4/ntvfs
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 /source4/ntvfs
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 'source4/ntvfs')
-rw-r--r--source4/ntvfs/posix/posix_eadb.c3
1 files changed, 1 insertions, 2 deletions
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;
}