diff options
author | Volker Lendecke <vl@samba.org> | 2008-01-19 15:44:48 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-01-19 18:51:20 +0100 |
commit | 70f88005c77cee0848a495da139144206b53eb3f (patch) | |
tree | fc5315ccb478b9f20d13a952963830e8221aa48b /source3/modules | |
parent | 3b889a256b6e2414d92c948d2e741773294e7ac9 (diff) | |
download | samba-70f88005c77cee0848a495da139144206b53eb3f.tar.gz samba-70f88005c77cee0848a495da139144206b53eb3f.tar.xz samba-70f88005c77cee0848a495da139144206b53eb3f.zip |
Fix error return in xattr_tdb_load_attrs
(This used to be commit 64e54ea8f76fe57193955aabc1459fe635233aca)
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_xattr_tdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_xattr_tdb.c b/source3/modules/vfs_xattr_tdb.c index 29864a8f943..597dd38eaf5 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; } /* |