]> gitweb.michael.orlitzky.com - apply-default-acl.git/commit
src/libadacl.c: rename variables in acl_update_entry() for clarity.
authorMichael Orlitzky <michael@orlitzky.com>
Tue, 11 Dec 2018 20:23:28 +0000 (15:23 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Tue, 11 Dec 2018 21:20:23 +0000 (16:20 -0500)
commit94a6d5e4af8ca45916d1f576b51eb7fd688d00be
treebd33ad2e706be7471e374d67c59970127fa74197
parent9c3d24f7347f6f9f7a8c5fdf0c7f649ce5fb927a
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.
src/libadacl.c