From: Michael Orlitzky Date: Tue, 11 Dec 2018 20:23:28 +0000 (-0500) Subject: src/libadacl.c: rename variables in acl_update_entry() for clarity. X-Git-Tag: v0.4.2~2 X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=94a6d5e4af8ca45916d1f576b51eb7fd688d00be;hp=94a6d5e4af8ca45916d1f576b51eb7fd688d00be;p=apply-default-acl.git src/libadacl.c: rename variables in acl_update_entry() for clarity. The updated copy of the entry in the acl_update_entry() function was called simply "entry", which makes it hard to mentally separate from, say, the "existing_entry" that is used in the same place. The same problem exists with names like "entry_tag" with respect to "existing_tag", and so on. This commit renames "entry" to "updated_entry" and all of the other variables like "entry_tag" to "updated_tag". That should make it a little clearer which entry is the new one. ---