]> gitweb.michael.orlitzky.com - apply-default-acl.git/commit
Rename inherit_default_acl() to assign_default_acl().
authorMichael Orlitzky <michael@orlitzky.com>
Fri, 23 Feb 2018 16:15:22 +0000 (11:15 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Fri, 23 Feb 2018 16:15:22 +0000 (11:15 -0500)
commitf0c1a9ee7c7a6acbfc0c4270f9167022504a6a45
treee064fd9656e72952b51496d03e6a729e1e5d5d57
parente5d36040a86457ed66782496d79136d6bdc4d9a3
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.
src/apply-default-acl.c