From: Michael Orlitzky Date: Mon, 26 Feb 2018 01:10:04 +0000 (-0500) Subject: Move the "or_dir" out of any_can_execute_or_dir(). X-Git-Tag: v0.1.0~25 X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;ds=sidebyside;h=6ac6902a55f6fd0427373db4d6dd5eedb6e330df;hp=6ac6902a55f6fd0427373db4d6dd5eedb6e330df;p=apply-default-acl.git Move the "or_dir" out of any_can_execute_or_dir(). The any_can_execute_or_dir() function checked two things; whether or not anyone could execute something, and whether or not that thing was a directory. It's cleaner to have the "is it directory?" check outside these days, so this commit renames that function to any_can_execute() and the one place it's used now checks whether or not the argument is a directory itself. ---