Subversion Repositories tendra.SVN

Rev

Rev 73 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
72 7u83 1
#ifndef __TENDRA_PWD_H
2
#define __TENDRA_PWD_H
3
 
73 7u83 4
#include <sys/types.h>
72 7u83 5
 
6
struct passwd {
7
	char	*pw_name;		/* user name */
8
	char	*pw_passwd;		/* encrypted password */
9
	uid_t	pw_uid;			/* user uid */
10
	gid_t	pw_gid;			/* user gid */
11
	time_t	pw_change;		/* password change time */
12
	char	*pw_class;		/* user access class */
13
	char	*pw_gecos;		/* Honeywell login info */
14
	char	*pw_dir;		/* home directory */
15
	char	*pw_shell;		/* default shell */
16
	time_t	pw_expire;		/* account expiration */
17
	int	pw_fields;		/* internal: fields filled in */
18
};
19
 
20
#endif