]> gitweb.michael.orlitzky.com - apply-default-acl.git/commit
Allow apply_default_acl() to take a stat pointer for its path argument.
authorMichael Orlitzky <michael@orlitzky.com>
Mon, 26 Feb 2018 02:35:02 +0000 (21:35 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Mon, 26 Feb 2018 19:10:29 +0000 (14:10 -0500)
commitdf929bebddb9852c8e50481169e2fd1b5a01faf6
treeafbaacf9b05f6ef8c40fdbc83e949812ce47751e
parent2bc2d104386912d39aa78c6fceb5694014257a7e
Allow apply_default_acl() to take a stat pointer for its path argument.

When operating recursively, nftw has already called stat() on the path
that it feeds to apply_default_acl(). Rather than re-stat it, we can
now pass a stat struct pointer in as the second argument to
apply_default_acl(). When not operating recursively, you just pass it
NULL instead, and apply_default_acl() will do the fstat as before.
src/apply-default-acl.c