summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristof Schmitt <cs@samba.org>2019-07-15 14:43:01 -0700
committerKarolin Seeger <kseeger@samba.org>2019-08-26 10:23:28 +0000
commit8c8f09c32f80667286b3790feb5adf3dcf926581 (patch)
tree85e7d56c75e77da26048a218012859c35d0e1c8c
parent966916dafec9b3e4aacd042dec2c36fd5cec3f53 (diff)
downloadsamba-8c8f09c32f80667286b3790feb5adf3dcf926581.tar.gz
nfs4_acls: Remove i argument from smbacl4_MergeIgnoreReject
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)
-rw-r--r--source3/modules/nfs4_acls.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/source3/modules/nfs4_acls.c b/source3/modules/nfs4_acls.c
index 11cb80e9300..2317e0bc8b1 100644
--- a/source3/modules/nfs4_acls.c
+++ b/source3/modules/nfs4_acls.c
@@ -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;
}
}