diff options
author | stefanf <stefanf@FreeBSD.org> | 2005-03-10 00:57:01 +0000 |
---|---|---|
committer | stefanf <stefanf@FreeBSD.org> | 2005-03-10 00:57:01 +0000 |
commit | 624654db85d8dcfec20ad8c4555a9081920e6622 (patch) | |
tree | 7813428bda53806335dcac739460e461e963ab47 /lib | |
parent | f01ea9b62654b444f236eae247140d7e5c0b8f7f (diff) | |
download | FreeBSD-src-624654db85d8dcfec20ad8c4555a9081920e6622.zip FreeBSD-src-624654db85d8dcfec20ad8c4555a9081920e6622.tar.gz |
Use socklen_t where appropriate.
Approved by: alfred
Diffstat (limited to 'lib')
-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; |