From: Michael Orlitzky Date: Thu, 1 Mar 2018 23:51:58 +0000 (-0500) Subject: src/libadacl.c: rewrite acl_set_entry() as acl_update_entry(). X-Git-Tag: v0.2.0~10 X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=2968629aa21aa275e09e19128bf2e36fe82096ad;hp=2968629aa21aa275e09e19128bf2e36fe82096ad;p=apply-default-acl.git src/libadacl.c: rewrite acl_set_entry() as acl_update_entry(). It turns out we only need to update existing entries in our ACLs, to mask the execute permissions. Since we never need to create new entries, the name "acl_set_entry" was not quite right. The new-entry-creation code has been removed from the bottom half of the function, and it has been renamed to "acl_update_entry". ---