diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2012-06-19 12:43:10 +0930 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2012-06-19 05:38:07 +0200 |
commit | 316e5e376c793d1f9882eebddbbd855cf121cce4 (patch) | |
tree | 239d4fb35bc72910b2e02c97438f639812ab697c /source4/ntvfs | |
parent | df4a6e82280845668dee6fe10f2025c9fa2b958c (diff) | |
download | samba-316e5e376c793d1f9882eebddbbd855cf121cce4.tar.gz |
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.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source4/ntvfs/posix/posix_eadb.c b/source4/ntvfs/posix/posix_eadb.c index 3f5a5b8e309..31c565c9c71 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; } |