aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJeffrey Hsu <hsu@FreeBSD.org>1996-01-31 08:02:11 +0000
committerJeffrey Hsu <hsu@FreeBSD.org>1996-01-31 08:02:11 +0000
commit128443c87b717b4d1097723a72c00623ff39baf4 (patch)
treefcd402dfc100145dd41ff5f7734f4e382ddd335a /include
parent10fd4c593397f1d5237c5dbb1a62994f6a4d92a1 (diff)
downloadsrc-128443c87b717b4d1097723a72c00623ff39baf4.tar.gz
src-128443c87b717b4d1097723a72c00623ff39baf4.zip
Notes
Diffstat (limited to 'include')
-rw-r--r--include/rpc/auth.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/include/rpc/auth.h b/include/rpc/auth.h
index 33827c4db07e..b979ffb101ea 100644
--- a/include/rpc/auth.h
+++ b/include/rpc/auth.h
@@ -28,7 +28,7 @@
*
* from: @(#)auth.h 1.17 88/02/08 SMI
* from: @(#)auth.h 2.3 88/08/07 4.0 RPCSRC
- * $Id: auth.h,v 1.3 1995/05/30 04:55:09 rgrimes Exp $
+ * $Id: auth.h,v 1.4 1996/01/30 23:31:35 mpp Exp $
*/
/*
@@ -68,14 +68,10 @@ enum auth_stat {
AUTH_FAILED=7 /* some unknown reason */
};
-#if (mc68000 || sparc || vax || i386 || tahoe || hp300)
-typedef u_long u_int32; /* 32-bit unsigned integers */
-#endif
-
union des_block {
struct {
- u_int32 high;
- u_int32 low;
+ u_int32_t high;
+ u_int32_t low;
} key;
char c[8];
};