From: Michael Orlitzky Date: Fri, 23 Feb 2018 16:15:22 +0000 (-0500) Subject: Rename inherit_default_acl() to assign_default_acl(). X-Git-Tag: v0.1.0~38 X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=f0c1a9ee7c7a6acbfc0c4270f9167022504a6a45;hp=f0c1a9ee7c7a6acbfc0c4270f9167022504a6a45;p=apply-default-acl.git Rename inherit_default_acl() to assign_default_acl(). The inherit_default_acl() function was called with two path names, and the default ACL of the second path was retrieved and applied to the first path. However, the only situation in which the function was used was when the default ACL of the parent path was already available -- so we were wasting time re-retrieving it. This commit changes the name of the function to assign_default_acl(), and it now takes an acl_t as its second parameter rather than a path. The one place it is used now passes it the (already-known) parent's default ACL rather than that parent's path. ---