summaryrefslogtreecommitdiff
path: root/include/pwd.h
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1998-07-15 00:50:41 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1998-07-15 00:50:41 +0000
commit12804cf0db6fe8a46b065580b7b87bbbeff7aa5e (patch)
tree5af3b426e9330d533874ae39ca1e2684224b7b6d /include/pwd.h
parent7007493792cbb6411f8fd135dbd1d7bbf14b5c46 (diff)
pw_uid is uid_t, pw_gid is gid_t
Diffstat (limited to 'include/pwd.h')
-rw-r--r--include/pwd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/pwd.h b/include/pwd.h
index 8e419adcf10..6dce488b6c6 100644
--- a/include/pwd.h
+++ b/include/pwd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pwd.h,v 1.5 1997/02/16 20:54:28 provos Exp $ */
+/* $OpenBSD: pwd.h,v 1.6 1998/07/15 00:50:40 millert Exp $ */
/* $NetBSD: pwd.h,v 1.9 1996/05/15 21:36:45 jtc Exp $ */
/*-
@@ -78,8 +78,8 @@
struct passwd {
char *pw_name; /* user name */
char *pw_passwd; /* encrypted password */
- int pw_uid; /* user uid */
- int pw_gid; /* user gid */
+ uid_t pw_uid; /* user uid */
+ uid_t pw_gid; /* user gid */
time_t pw_change; /* password change time */
char *pw_class; /* user access class */
char *pw_gecos; /* Honeywell login info */