svn commit: r200829 - head/sys/sys

Edward Tomasz Napierala trasz at FreeBSD.org
Tue Dec 22 09:03:59 UTC 2009


Author: trasz
Date: Tue Dec 22 09:03:59 2009
New Revision: 200829
URL: http://svn.freebsd.org/changeset/base/200829

Log:
  Cosmetic fixes.

Modified:
  head/sys/sys/acl.h

Modified: head/sys/sys/acl.h
==============================================================================
--- head/sys/sys/acl.h	Tue Dec 22 06:09:00 2009	(r200828)
+++ head/sys/sys/acl.h	Tue Dec 22 09:03:59 2009	(r200829)
@@ -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;
 


More information about the svn-src-head mailing list