View | Details | Raw Unified | Return to bug 226609
Collapse All | Expand All

(-)include/utmpx.h (-1 / +1 lines)
Lines 43-49 Link Here
43
	struct timeval	ut_tv;		/* Time entry was made. */
43
	struct timeval	ut_tv;		/* Time entry was made. */
44
	char		ut_id[8];	/* Record identifier. */
44
	char		ut_id[8];	/* Record identifier. */
45
	pid_t		ut_pid;		/* Process ID. */
45
	pid_t		ut_pid;		/* Process ID. */
46
	char		ut_user[32];	/* User login name. */
46
	char		ut_user[64];	/* User login name. */
47
	char		ut_line[16];	/* Device name. */
47
	char		ut_line[16];	/* Device name. */
48
#if __BSD_VISIBLE
48
#if __BSD_VISIBLE
49
	char		ut_host[128];	/* Remote hostname. */
49
	char		ut_host[128];	/* Remote hostname. */
50
	
50
	
(-)sys/sys/param.h (-1 / +1 lines)
Lines 98-104 Link Here
98
98
99
#define	MAXCOMLEN	19		/* max command name remembered */
99
#define	MAXCOMLEN	19		/* max command name remembered */
100
#define	MAXINTERP	PATH_MAX	/* max interpreter file name length */
100
#define	MAXINTERP	PATH_MAX	/* max interpreter file name length */
101
#define	MAXLOGNAME	33		/* max login name length (incl. NUL) */
101
#define	MAXLOGNAME	65		/* max login name length (incl. NUL) */
102
#define	MAXUPRC		CHILD_MAX	/* max simultaneous processes */
102
#define	MAXUPRC		CHILD_MAX	/* max simultaneous processes */
103
#define	NCARGS		ARG_MAX		/* max bytes for an exec function */
103
#define	NCARGS		ARG_MAX		/* max bytes for an exec function */
104
#define	NGROUPS		(NGROUPS_MAX+1)	/* max number groups */
104
#define	NGROUPS		(NGROUPS_MAX+1)	/* max number groups */

Return to bug 226609