From: Michael Orlitzky Date: Fri, 23 Feb 2018 16:32:31 +0000 (-0500) Subject: Have acl_execute_masked() take an acl_t rather than a path as its argument. X-Git-Tag: v0.1.0~37 X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=927c66a6c66bcbd69b62f07f4b937c5df9afab88;hp=927c66a6c66bcbd69b62f07f4b937c5df9afab88;p=apply-default-acl.git Have acl_execute_masked() take an acl_t rather than a path as its argument. We only call acl_execute_masked() in one place; and in that place, the ACL of the path in question is already available. So, there's no reason for us to re-retrieve it. Instead, the function has been updated to take an acl_t (and not a path), simplifing the logic a bit. ---