From 720138bbdef2c8fb69971f16e9834bdd44dca316 Mon Sep 17 00:00:00 2001 From: Stefan Farfeleder Date: Thu, 10 Mar 2005 00:57:01 +0000 Subject: [PATCH] Use socklen_t where appropriate. Approved by: alfred --- lib/libc/rpc/auth_time.c | 3 ++- lib/libc/rpc/rtime.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/libc/rpc/auth_time.c b/lib/libc/rpc/auth_time.c index 0bebea612792..ae108c28ef9f 100644 --- a/lib/libc/rpc/auth_time.c +++ b/lib/libc/rpc/auth_time.c @@ -253,7 +253,8 @@ __rpc_get_time_offset(td, srv, thost, uaddr, netid) nis_server tsrv; void (*oldsig)() = NULL; /* old alarm handler */ struct sockaddr_in sin; - int s = RPC_ANYSOCK, len; + socklen_t len; + int s = RPC_ANYSOCK; int type = 0; td->tv_sec = 0; diff --git a/lib/libc/rpc/rtime.c b/lib/libc/rpc/rtime.c index 62538404c0ee..39ac19ba4a1f 100644 --- a/lib/libc/rpc/rtime.c +++ b/lib/libc/rpc/rtime.c @@ -78,7 +78,7 @@ rtime(addrp, timep, timeout) int res; unsigned long thetime; struct sockaddr_in from; - int fromlen; + socklen_t fromlen; int type; struct servent *serv;