diff options
-rw-r--r-- | lib/libc/rpc/auth_time.c | 3 | ||||
-rw-r--r-- | 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 0bebea6..ae108c2 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 6253840..39ac19b 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; |