summaryrefslogtreecommitdiff
path: root/include/rpc
diff options
context:
space:
mode:
authorlukem <lukem@NetBSD.org>1998-02-11 08:05:54 +0000
committerlukem <lukem@NetBSD.org>1998-02-11 08:05:54 +0000
commit29c82e2ef6413e2fcf69ad8d27ec9bbcdbaa568c (patch)
tree2310c8e5b32b5ed6111d0fef07a404599d9bbddb /include/rpc
parent279cdc6c6dfad3020e7030a7e2678f6253b902ce (diff)
use u_int32_t instead of size_t for oa_length
Diffstat (limited to 'include/rpc')
-rw-r--r--include/rpc/auth.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/rpc/auth.h b/include/rpc/auth.h
index ab3c7ba5f87..0db819724a1 100644
--- a/include/rpc/auth.h
+++ b/include/rpc/auth.h
@@ -1,4 +1,4 @@
-/* $NetBSD: auth.h,v 1.10 1998/02/10 03:52:14 lukem Exp $ */
+/* $NetBSD: auth.h,v 1.11 1998/02/11 08:05:54 lukem Exp $ */
/*
* Sun RPC is a product of Sun Microsystems, Inc. and is provided for
@@ -87,9 +87,9 @@ __END_DECLS
* Authentication info. Opaque to client.
*/
struct opaque_auth {
- enum_t oa_flavor; /* flavor of auth */
- caddr_t oa_base; /* address of more auth stuff */
- size_t oa_length; /* not to exceed MAX_AUTH_BYTES */
+ enum_t oa_flavor; /* flavor of auth */
+ caddr_t oa_base; /* address of more auth stuff */
+ u_int32_t oa_length; /* not to exceed MAX_AUTH_BYTES */
};