1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-02-03 17:11:32 +00:00

Cosmetic fixes.

This commit is contained in:
Edward Tomasz Napierala 2009-12-22 09:03:59 +00:00
parent 46e977391b
commit 5a8eb3a9d1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=200829

View File

@ -99,13 +99,13 @@ struct oldacl {
* Current "struct acl".
*/
struct acl_entry {
acl_tag_t ae_tag;
uid_t ae_id;
acl_perm_t ae_perm;
/* "allow" or "deny". Unused in POSIX ACLs. */
acl_tag_t ae_tag;
uid_t ae_id;
acl_perm_t ae_perm;
/* NFSv4 entry type, "allow" or "deny". Unused in POSIX.1e ACLs. */
acl_entry_type_t ae_entry_type;
/* Flags control inheritance. Unused in POSIX ACLs. */
acl_flag_t ae_flags;
/* NFSv4 ACL inheritance. Unused in POSIX.1e ACLs. */
acl_flag_t ae_flags;
};
typedef struct acl_entry *acl_entry_t;