summaryrefslogtreecommitdiffstats
path: root/share/man/man9/acl.9
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2000-01-28 15:22:51 +0000
committerrwatson <rwatson@FreeBSD.org>2000-01-28 15:22:51 +0000
commit1d708306f5618cd4893014b2cc9ff3e15875d962 (patch)
treeed38b994986fe6ba6f9af95ef5d073bd17ecc22f /share/man/man9/acl.9
parentecc56c784b2880b40040e285d8c1a4ab80cc2f34 (diff)
downloadFreeBSD-src-1d708306f5618cd4893014b2cc9ff3e15875d962.zip
FreeBSD-src-1d708306f5618cd4893014b2cc9ff3e15875d962.tar.gz
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
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 61af2cb..1e085e5 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
OpenPOWER on IntegriCloud