diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-06-08 10:40:30 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-06-08 10:40:30 +0000 |
commit | 7dda6c97e8a83137f9390c65d9fe031b49e28683 (patch) | |
tree | 0a0d2f0a21b000dd60e52b5ae502b64aac3f901f /sunrpc | |
parent | d62c5972bfd7bc0afb3f3371a43e31d470dd34dc (diff) | |
download | glibc-7dda6c97e8a83137f9390c65d9fe031b49e28683.tar.gz |
(_svcauth_unix): Use unsigned types for str_len, gid_len and i.
Diffstat (limited to 'sunrpc')
-rw-r--r-- | sunrpc/svc_authux.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sunrpc/svc_authux.c b/sunrpc/svc_authux.c index 59fdde6ad8..efed431648 100644 --- a/sunrpc/svc_authux.c +++ b/sunrpc/svc_authux.c @@ -63,8 +63,8 @@ _svcauth_unix(rqst, msg) gid_t area_gids[NGRPS]; } *area; u_int auth_len; - int str_len, gid_len; - register int i; + u_int str_len, gid_len; + u_int i; area = (struct area *) rqst->rq_clntcred; aup = &area->area_aup; |