diff options
author | 2001-04-19 02:21:57 +0000 | |
---|---|---|
committer | 2001-04-19 02:21:57 +0000 | |
commit | 35b269d1f64d9791bae69b9eab98c80f9b7e97f6 (patch) | |
tree | 70ce6710522525b2b869ebfbcb8b92b8b234ccc5 | |
parent | strip comments, as on the alpha; millert ok (diff) | |
download | wireguard-openbsd-35b269d1f64d9791bae69b9eab98c80f9b7e97f6.tar.xz wireguard-openbsd-35b269d1f64d9791bae69b9eab98c80f9b7e97f6.zip |
crank cr_ref to u_int; ref freebsd-current/378268, lambert; this is an expedient fix
-rw-r--r-- | sys/sys/ucred.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/ucred.h b/sys/sys/ucred.h index 86ec5811e8c..aaa437fba2a 100644 --- a/sys/sys/ucred.h +++ b/sys/sys/ucred.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ucred.h,v 1.2 1996/03/03 12:12:37 niklas Exp $ */ +/* $OpenBSD: ucred.h,v 1.3 2001/04/19 02:21:57 deraadt Exp $ */ /* $NetBSD: ucred.h,v 1.12 1995/06/01 22:44:50 jtc Exp $ */ /* @@ -43,7 +43,7 @@ * Credentials. */ struct ucred { - u_short cr_ref; /* reference count */ + u_int cr_ref; /* reference count */ uid_t cr_uid; /* effective user id */ gid_t cr_gid; /* effective group id */ short cr_ngroups; /* number of groups */ |