diff options
author | Abhidnya Joshi <achirmul@in.ibm.com> | 2013-08-26 12:31:49 +0530 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2014-07-15 12:46:11 +0200 |
commit | a9dcd0201eba2f744bf4fdd5d5720cc5c11b66ab (patch) | |
tree | be3d50d1767a0b6d0da8d9e3c06025e3d27b9cec /source3 | |
parent | 79f112942a80a0f873539cce69e14b31f6ca225a (diff) | |
download | samba-a9dcd0201eba2f744bf4fdd5d5720cc5c11b66ab.tar.gz |
s3: fix missing braces in nfs4_acls.c
Reviewed-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Simo Sorce <idra@samba.org>
Autobuild-User(master): Jeremy Allison <jra@samba.org>
Autobuild-Date(master): Wed Aug 28 20:25:56 CEST 2013 on sn-devel-104
Bug: https://bugzilla.samba.org/show_bug.cgi?id=10688
(missing braces in nfs4_acls.c)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/modules/nfs4_acls.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/modules/nfs4_acls.c b/source3/modules/nfs4_acls.c index dab1a2abe4..500cb4772a 100644 --- a/source3/modules/nfs4_acls.c +++ b/source3/modules/nfs4_acls.c @@ -987,9 +987,10 @@ NTSTATUS smb_set_nt_acl_nfs4(vfs_handle_struct *handle, files_struct *fsp, (unsigned int)newGID)); if (smbacl4_GetFileOwner(fsp->conn, fsp->fsp_name->base_name, - &sbuf)) + &sbuf)){ TALLOC_FREE(frame); return map_nt_error_from_unix(errno); + } /* If we successfully chowned, we know we must * be able to set the acl, so do it as root. |