diff options
author | Günther Deschner <gd@samba.org> | 2010-02-18 02:13:07 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-02-18 02:17:50 +0100 |
commit | 6cf10cc1020dd7ef483887caebcbd76d28572432 (patch) | |
tree | a02910c7c57efedfb2a0fd7dcc996d282dfab5ff /source3/modules | |
parent | 998a7b4e3f50c49df3ad391a21c14e3df5e377eb (diff) | |
download | samba-6cf10cc1020dd7ef483887caebcbd76d28572432.tar.gz samba-6cf10cc1020dd7ef483887caebcbd76d28572432.tar.xz samba-6cf10cc1020dd7ef483887caebcbd76d28572432.zip |
s3-modules: fix get_acl_blob in the acl_tdb VFS module.
Shuttle-reviewed by jra :)
Guenther
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_acl_tdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_acl_tdb.c b/source3/modules/vfs_acl_tdb.c index ac11a51b3bb..bfed0eb2b87 100644 --- a/source3/modules/vfs_acl_tdb.c +++ b/source3/modules/vfs_acl_tdb.c @@ -147,7 +147,7 @@ static NTSTATUS get_acl_blob(TALLOC_CTX *ctx, TDB_DATA data; struct file_id id; struct db_context *db; - NTSTATUS status; + NTSTATUS status = NT_STATUS_OK; SMB_STRUCT_STAT sbuf; SMB_VFS_HANDLE_GET_DATA(handle, db, struct db_context, |