summaryrefslogtreecommitdiff
path: root/lib/libc/rpc/clnt_udp.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2002-09-06 18:35:13 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2002-09-06 18:35:13 +0000
commitbf3ef4a5d5889b762ba9743d44769f699e017e16 (patch)
treefe248fabb92557f313b861f0970c4818261d16ce /lib/libc/rpc/clnt_udp.c
parent69c2bb09342a39c06cee4a393cb24345bb692aec (diff)
use socklen_t where needed; henning pvalchev ok
Diffstat (limited to 'lib/libc/rpc/clnt_udp.c')
-rw-r--r--lib/libc/rpc/clnt_udp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/rpc/clnt_udp.c b/lib/libc/rpc/clnt_udp.c
index 5a5f9c3a038..782078d5aa8 100644
--- a/lib/libc/rpc/clnt_udp.c
+++ b/lib/libc/rpc/clnt_udp.c
@@ -28,7 +28,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: clnt_udp.c,v 1.18 2002/06/03 12:04:08 deraadt Exp $";
+static char *rcsid = "$OpenBSD: clnt_udp.c,v 1.19 2002/09/06 18:35:12 deraadt Exp $";
#endif /* LIBC_SCCS and not lint */
/*
@@ -220,7 +220,7 @@ clntudp_call(cl, proc, xargs, argsp, xresults, resultsp, utimeout)
XDR *xdrs;
int outlen;
int inlen;
- int fromlen;
+ socklen_t fromlen;
fd_set *fds, readfds;
struct sockaddr_in from;
struct rpc_msg reply_msg;