]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
nfs4_acls: Remove i argument from smbacl4_MergeIgnoreReject
authorChristof Schmitt <cs@samba.org>
Mon, 15 Jul 2019 21:43:01 +0000 (14:43 -0700)
committerKarolin Seeger <kseeger@samba.org>
Mon, 26 Aug 2019 10:23:28 +0000 (10:23 +0000)
This is only used for logging of a rejected ACL, but does not provide
additional useful information. Remove it to simplify the function a bit.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=14032

Signed-off-by: Christof Schmitt <cs@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
(cherry picked from commit 44790721e4f2c6ee6f46de7ac88123ce1a9f6e39)

source3/modules/nfs4_acls.c

index 11cb80e93006d01c037c046ddf6ae13c7cc2e7cd..2317e0bc8b1ac5e96a6340d004fe31fb2e337a63 100644 (file)
@@ -765,13 +765,10 @@ static bool smbacl4_fill_ace4(
        return true; /* OK */
 }
 
-static int smbacl4_MergeIgnoreReject(
-       enum smbacl4_acedup_enum acedup,
-       struct SMB4ACL_T *theacl, /* may modify it */
-       SMB_ACE4PROP_T *ace, /* the "new" ACE */
-       bool    *paddNewACE,
-       int     i
-)
+static int smbacl4_MergeIgnoreReject(enum smbacl4_acedup_enum acedup,
+                                    struct SMB4ACL_T *theacl,
+                                    SMB_ACE4PROP_T *ace,
+                                    bool *paddNewACE)
 {
        int     result = 0;
        SMB_ACE4PROP_T *ace4found = smbacl4_find_equal_special(theacl, ace);
@@ -788,7 +785,7 @@ static int smbacl4_MergeIgnoreReject(
                        *paddNewACE = false;
                        break;
                case e_reject: /* do an error */
-                       DEBUG(8, ("ACL rejected by duplicate nt ace#%d\n", i));
+                       DBG_INFO("ACL rejected by duplicate nt ace.\n");
                        errno = EINVAL; /* SHOULD be set on any _real_ error */
                        result = -1;
                        break;
@@ -905,7 +902,7 @@ static struct SMB4ACL_T *smbacl4_win2nfs4(
 
                if (pparams->acedup!=e_dontcare) {
                        if (smbacl4_MergeIgnoreReject(pparams->acedup, theacl,
-                                                     &ace_v4, &addNewACE, i)) {
+                                                     &ace_v4, &addNewACE)) {
                                return NULL;
                        }
                }