summaryrefslogtreecommitdiff
path: root/src/acls.h
diff options
context:
space:
mode:
authorjnweiger <jnweiger>2005-12-16 18:26:01 +0000
committerjnweiger <jnweiger>2005-12-16 18:26:01 +0000
commit9131dd54d075ef5e6ec45e6787d083541736b1b2 (patch)
tree1e667b7237f513290804af8f1c477cb43dad62f3 /src/acls.h
parent0e71ff2ef21998e8b999bf725b46b16e5995bf90 (diff)
downloadscreen-9131dd54d075ef5e6ec45e6787d083541736b1b2.tar.gz
old version screen-3.9.9 May 17 2001
Diffstat (limited to 'src/acls.h')
-rw-r--r--src/acls.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/acls.h b/src/acls.h
index 2254d42..03aebe4 100644
--- a/src/acls.h
+++ b/src/acls.h
@@ -43,10 +43,10 @@ typedef unsigned char * AclBits;
* How a user joins a group.
* Here is the node to construct one list per user.
*/
-struct usergroup
+struct aclusergroup
{
- struct user *u; /* the user who borrows us his rights */
- struct usergroup *next;
+ struct acluser *u; /* the user who borrows us his rights */
+ struct aclusergroup *next;
};
#endif /* MULTIUSER */
@@ -59,9 +59,9 @@ struct usergroup
* users is the User entry of the session owner (creator)
* and anchors all other users. Add/Delete users there.
*/
-typedef struct user
+typedef struct acluser
{
- struct user *u_next; /* continue the main user list */
+ struct acluser *u_next; /* continue the main user list */
char u_name[20+1]; /* login name how he showed up */
char *u_password; /* his password (may be NullStr). */
int u_checkpassword; /* nonzero if this u_password is valid */
@@ -75,7 +75,7 @@ typedef struct user
#ifdef MULTIUSER
int u_id; /* a uniq index in the bitfields. */
AclBits u_umask_w_bits[ACL_BITS_PER_WIN]; /* his window create umask */
- struct usergroup *u_group; /* linked list of pointers to other users */
+ struct aclusergroup *u_group; /* linked list of pointers to other users */
#endif
} User;