summaryrefslogtreecommitdiffstats
path: root/include/rpc
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2001-09-15 13:51:00 +0000
committerderaadt <deraadt@openbsd.org>2001-09-15 13:51:00 +0000
commit41aa8645fbcd1fbed586890d01ec7178a02474bd (patch)
tree5798f3567439e1e9c5532dd6a617d3fb556f8c4f /include/rpc
parentRewrite of powerpc pmap_page_protect(), the old version had a couple of (diff)
downloadwireguard-openbsd-41aa8645fbcd1fbed586890d01ec7178a02474bd.tar.xz
wireguard-openbsd-41aa8645fbcd1fbed586890d01ec7178a02474bd.zip
prototype cleanup
Diffstat (limited to 'include/rpc')
-rw-r--r--include/rpc/clnt.h4
-rw-r--r--include/rpc/svc.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/include/rpc/clnt.h b/include/rpc/clnt.h
index a4d3185ff92..0c28612cb5a 100644
--- a/include/rpc/clnt.h
+++ b/include/rpc/clnt.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: clnt.h,v 1.4 1998/03/19 00:27:17 millert Exp $ */
+/* $OpenBSD: clnt.h,v 1.5 2001/09/15 13:51:00 deraadt Exp $ */
/* $NetBSD: clnt.h,v 1.6 1995/04/29 05:27:58 cgd Exp $ */
/*
@@ -280,7 +280,7 @@ __END_DECLS
* struct sockaddr_in *raddr;
* u_long prog;
* u_long version;
- * register int *sockp;
+ * int *sockp;
* u_int sendsz;
* u_int recvsz;
*/
diff --git a/include/rpc/svc.h b/include/rpc/svc.h
index 7fcdf91e0b3..0ade6063889 100644
--- a/include/rpc/svc.h
+++ b/include/rpc/svc.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: svc.h,v 1.4 2001/03/03 06:50:27 deraadt Exp $ */
+/* $OpenBSD: svc.h,v 1.5 2001/09/15 13:51:00 deraadt Exp $ */
/* $NetBSD: svc.h,v 1.9 1995/04/29 05:28:01 cgd Exp $ */
/*
@@ -95,7 +95,7 @@ typedef struct __rpc_svcxprt {
/* destroy this struct */
void (*xp_destroy) __P((struct __rpc_svcxprt *));
} *xp_ops;
- int xp_addrlen; /* length of remote address */
+ socklen_t xp_addrlen; /* length of remote address */
struct sockaddr_in xp_raddr; /* remote address */
struct opaque_auth xp_verf; /* raw response verifier */
caddr_t xp_p1; /* private */