diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-06-08 16:46:54 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-06-08 16:46:54 +0000 |
commit | f29eee339fbe275e25d40ae0409dd951b30cf44b (patch) | |
tree | c1640746d97d12b71b136f2ff333975b9410e9a9 /lib | |
parent | ceb7ba86ddc815e7ff47148127c72bba8a5a5b41 (diff) |
buf oflow; chris@ferret.lmh.ox.ac.uk
Diffstat (limited to 'lib')
-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; |