From f827650c65e36526abe9d87a52966fec5be1a2dd Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 26 Oct 2016 12:20:39 +0200 Subject: [PATCH] smbd: Fix an indentation Signed-off-by: Volker Lendecke Reviewed-by: Ralph Boehme --- source3/smbd/posix_acls.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source3/smbd/posix_acls.c b/source3/smbd/posix_acls.c index cc3fe92792..9d02e8a315 100644 --- a/source3/smbd/posix_acls.c +++ b/source3/smbd/posix_acls.c @@ -2470,9 +2470,10 @@ static bool unpack_canon_ace(files_struct *fsp, * Now go through the DACL and create the canon_ace lists. */ - if (!create_canon_ace_lists( fsp, pst, pfile_owner_sid, pfile_grp_sid, - &file_ace, &dir_ace, psd->dacl)) + if (!create_canon_ace_lists(fsp, pst, pfile_owner_sid, pfile_grp_sid, + &file_ace, &dir_ace, psd->dacl)) { return False; + } if ((file_ace == NULL) && (dir_ace == NULL)) { /* W2K traverse DACL set - ignore. */ -- 2.34.1