summaryrefslogtreecommitdiff
path: root/sunrpc
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-06-08 10:40:30 +0000
committerUlrich Drepper <drepper@redhat.com>1998-06-08 10:40:30 +0000
commit7dda6c97e8a83137f9390c65d9fe031b49e28683 (patch)
tree0a0d2f0a21b000dd60e52b5ae502b64aac3f901f /sunrpc
parentd62c5972bfd7bc0afb3f3371a43e31d470dd34dc (diff)
downloadglibc-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.c4
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;