summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_xattr_tdb.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2008-01-19 15:44:48 +0100
committerVolker Lendecke <vl@samba.org>2008-01-19 18:51:20 +0100
commit70f88005c77cee0848a495da139144206b53eb3f (patch)
treefc5315ccb478b9f20d13a952963830e8221aa48b /source3/modules/vfs_xattr_tdb.c
parent3b889a256b6e2414d92c948d2e741773294e7ac9 (diff)
downloadsamba-70f88005c77cee0848a495da139144206b53eb3f.tar.gz
samba-70f88005c77cee0848a495da139144206b53eb3f.tar.bz2
samba-70f88005c77cee0848a495da139144206b53eb3f.zip
Fix error return in xattr_tdb_load_attrs
(This used to be commit 64e54ea8f76fe57193955aabc1459fe635233aca)
Diffstat (limited to 'source3/modules/vfs_xattr_tdb.c')
-rw-r--r--source3/modules/vfs_xattr_tdb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_xattr_tdb.c b/source3/modules/vfs_xattr_tdb.c
index 29864a8f94..597dd38eaf 100644
--- a/source3/modules/vfs_xattr_tdb.c
+++ b/source3/modules/vfs_xattr_tdb.c
@@ -110,7 +110,7 @@ static NTSTATUS xattr_tdb_load_attrs(TALLOC_CTX *mem_ctx,
status = xattr_tdb_pull_attrs(mem_ctx, &data, presult);
TALLOC_FREE(data.dptr);
- return NT_STATUS_OK;
+ return status;
}
/*