From 48081b9f004f78771848ebd951de0359f6362419 Mon Sep 17 00:00:00 2001 From: Olga Kornievskaia Date: Thu, 14 Apr 2011 17:04:46 -0400 Subject: [PATCH] printing received nfs4 access mask --- daemon/acl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/daemon/acl.c b/daemon/acl.c index 6893f67..c76b4cc 100644 --- a/daemon/acl.c +++ b/daemon/acl.c @@ -221,6 +221,7 @@ static int convert_nfs4acl_2_dacl(nfsacl41 *acl, int file_type, for (i = 0; i < acl->count; i++) { // nfs4 acemask should be exactly the same as file access mask mask = acl->aces[i].acemask; + dprintf(1, "access mask %x\n", mask); if (acl->aces[i].acetype == ACE4_ACCESS_ALLOWED_ACE_TYPE) { status = AddAccessAllowedAce(dacl, ACL_REVISION, mask, sids[i]); if (!status) {