diff options
| author | Edward Tomasz Napierala <trasz@FreeBSD.org> | 2009-12-22 09:03:59 +0000 |
|---|---|---|
| committer | Edward Tomasz Napierala <trasz@FreeBSD.org> | 2009-12-22 09:03:59 +0000 |
| commit | 5a8eb3a9d1c384d5232e11f5eb4dc76141356183 (patch) | |
| tree | c7f691dfbf1dcc9a5c8dfac31cd5e41a3f2b0c66 | |
| parent | 46e977391b5ea390b18f2cad769aac4edbb15e53 (diff) | |
Notes
| -rw-r--r-- | sys/sys/acl.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/sys/acl.h b/sys/sys/acl.h index 855e85c7ce64..80a3fe61637c 100644 --- a/sys/sys/acl.h +++ b/sys/sys/acl.h @@ -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; |
