diff options
author | 1998-06-08 16:46:53 +0000 | |
---|---|---|
committer | 1998-06-08 16:46:53 +0000 | |
commit | e1ee68ee67ba977626a9f28d90d5bb875e62e57c (patch) | |
tree | f6f44f214d5999e69ebac09f9b651c30e58074d0 | |
parent | for xfree86 prompt, make clear "y" and "n" are the answers (diff) | |
download | wireguard-openbsd-e1ee68ee67ba977626a9f28d90d5bb875e62e57c.tar.xz wireguard-openbsd-e1ee68ee67ba977626a9f28d90d5bb875e62e57c.zip |
buf oflow; chris@ferret.lmh.ox.ac.uk
-rw-r--r-- | lib/libc/rpc/svc_auth_unix.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/rpc/svc_auth_unix.c b/lib/libc/rpc/svc_auth_unix.c index 079aa98aa7c..df39fecbf0a 100644 --- a/lib/libc/rpc/svc_auth_unix.c +++ b/lib/libc/rpc/svc_auth_unix.c @@ -28,7 +28,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: svc_auth_unix.c,v 1.4 1996/11/14 06:33:11 etheisen Exp $"; +static char *rcsid = "$OpenBSD: svc_auth_unix.c,v 1.5 1998/06/08 16:46:53 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -64,8 +64,8 @@ _svcauth_unix(rqst, msg) int area_gids[NGRPS]; } *area; u_int auth_len; - int str_len, gid_len; - register int i; + u_int str_len, gid_len; + register u_int i; area = (struct area *) rqst->rq_clntcred; aup = &area->area_aup; |