summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2001-09-15 13:51:02 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2001-09-15 13:51:02 +0000
commit8f5b4bd4f461a41e728944072460af706dd47a0b (patch)
tree40677e84020e80be559c2933f98a2ac14fde25a1 /include
parentce8e4cc18d0591021a891dc8c10d0bf046cfbec3 (diff)
prototype cleanup
Diffstat (limited to 'include')
-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 */