aboutsummaryrefslogtreecommitdiff
path: root/share/man/man9/acl.9
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2000-01-28 15:22:51 +0000
committerRobert Watson <rwatson@FreeBSD.org>2000-01-28 15:22:51 +0000
commitca7d2b82e15bd7c21e42d19c2afa627d006f1846 (patch)
tree5582df076c6a0d28dd052582bc6d95e7c14fbc33 /share/man/man9/acl.9
parent064b3244ecc1a0b9505d516381cf39f53b590ede (diff)
downloadsrc-ca7d2b82e15bd7c21e42d19c2afa627d006f1846.tar.gz
src-ca7d2b82e15bd7c21e42d19c2afa627d006f1846.zip
Fix man page structures/constants to match recent changes in acl.h
Fix a few more namespace messes and whitespace curiosities in acl.h Fix comments in acl.h Clean up some function prototypes from acl.h that won't be committed before the code freeze. Some of this kindly pointed out by: the ever patient bde
Notes
Notes: svn path=/head/; revision=56753
Diffstat (limited to 'share/man/man9/acl.9')
-rw-r--r--share/man/man9/acl.914
1 files changed, 10 insertions, 4 deletions
diff --git a/share/man/man9/acl.9 b/share/man/man9/acl.9
index 61af2cb32857..1e085e52aa62 100644
--- a/share/man/man9/acl.9
+++ b/share/man/man9/acl.9
@@ -1,5 +1,5 @@
.\"-
-.\" Copyright (c) 1999 Robert N. M. Watson
+.\" Copyright (c) 1999, 2000 Robert N. M. Watson
.\" All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
@@ -50,12 +50,12 @@ typedef struct acl_entry *acl_entry_t;
struct acl {
int acl_cnt;
- struct acl_entry acl_entry[MAX_ACL_ENTRIES];
+ struct acl_entry acl_entry[ACL_MAX_ENTRIES];
};
typedef struct acl *acl_t;
/*
- * Possible valid values for a_type of acl_entry_t
+ * Possible valid values for a_tag of acl_entry_t
*/
#define ACL_USER_OBJ 0x00000001
#define ACL_USER 0x00000002
@@ -64,10 +64,16 @@ typedef struct acl *acl_t;
#define ACL_MASK 0x00000010
#define ACL_OTHER 0x00000020
#define ACL_OTHER_OBJ ACL_OTHER
-#define ACL_AFS_ID 0x00000040
+/*
+ * Possible valid values a_type_t arguments
+ */
#define ACL_TYPE_ACCESS 0x00000000
#define ACL_TYPE_DEFAULT 0x00000001
+#define ACL_TYPE_AFS 0x00000002
+#define ACL_TYPE_CODA 0x00000003
+#define ACL_TYPE_NTFS 0x00000004
+#define ACL_TYPE_NWFS 0x00000005
/*
* Possible flags in a_perm field