diff options
author | Alexander Werth <alexander.werth@de.ibm.com> | 2012-04-25 15:10:54 +0200 |
---|---|---|
committer | Christian Ambach <ambi@samba.org> | 2012-07-18 17:45:05 +0200 |
commit | 24f7085e4ff3523cad4594e554386f8a332523f3 (patch) | |
tree | 2a3c1fb3faa8098347c8d722802495c78ead512b | |
parent | 9dd0510c20d6844148eafd7d4494c80045d217c9 (diff) | |
download | samba-24f7085e4ff3523cad4594e554386f8a332523f3.tar.gz samba-24f7085e4ff3523cad4594e554386f8a332523f3.tar.bz2 samba-24f7085e4ff3523cad4594e554386f8a332523f3.zip |
s3:Really ignore unknown special ids in NFSv4 ACLs.
Signed-off-by: Christian Ambach <ambi@samba.org>
Autobuild-User(master): Christian Ambach <ambi@samba.org>
Autobuild-Date(master): Wed Jul 18 17:45:05 CEST 2012 on sn-devel-104
-rw-r--r-- | source3/modules/nfs4_acls.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/modules/nfs4_acls.c b/source3/modules/nfs4_acls.c index bd3c7fac72..bcc7937abe 100644 --- a/source3/modules/nfs4_acls.c +++ b/source3/modules/nfs4_acls.c @@ -317,6 +317,7 @@ static bool smbacl4_nfs42win(TALLOC_CTX *mem_ctx, SMB4ACL_T *theacl, /* in */ default: DEBUG(8, ("invalid special who id %d " "ignored\n", ace->who.special_id)); + continue; } } else { if (ace->aceFlags & SMB_ACE4_IDENTIFIER_GROUP) { |