From: Michael Orlitzky Date: Mon, 26 Feb 2018 01:11:54 +0000 (-0500) Subject: Eliminate the one remaining use of is_directory(). X-Git-Tag: v0.1.0~24 X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;ds=sidebyside;h=1be99786d05f3a7a75a17badae7b42491442a17a;hp=1be99786d05f3a7a75a17badae7b42491442a17a;p=apply-default-acl.git Eliminate the one remaining use of is_directory(). The is_directory() function was called once, in a place where we already had access to its argument's stat structure. Instead, we now just use S_ISDIR, and the is_directory() function has met its end. ---