Code Reformating: acls.c

This commit is contained in:
Alexander Naumov
2023-07-18 12:19:38 +02:00
parent 98677d5bf5
commit 5e91ed70a6
2 changed files with 685 additions and 789 deletions

1455
src/acls.c

File diff suppressed because it is too large Load Diff

View File

@@ -77,20 +77,21 @@ struct plop
*/
typedef struct acluser
{
struct acluser *u_next; /* continue the main user list */
char u_name[MAXLOGINLEN + 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 */
int u_detachwin; /* the window where he last detached */
int u_detachotherwin; /* window that was "other" when he detached */
int u_Esc, u_MetaEsc; /* the users screen escape character */
struct acluser *u_next; /* continue the main user list */
char u_name[MAXLOGINLEN + 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 */
int u_detachwin; /* the window where he last detached */
int u_detachotherwin; /* window that was "other" when he detached */
int u_Esc, u_MetaEsc; /* the users screen escape character */
#ifdef COPY_PASTE
struct plop u_plop;
#endif
#ifdef MULTIUSER
int u_id; /* a uniq index in the bitfields. */
int u_id; /* a uniq index in the bitfields. */
AclBits u_umask_w_bits[ACL_BITS_PER_WIN]; /* his window create umask */
struct aclusergroup *u_group; /* linked list of pointers to other users */
struct aclusergroup *u_group; /* linked list of pointers to other users */
#endif
} User;