summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorhsu <hsu@FreeBSD.org>1996-01-31 08:02:11 +0000
committerhsu <hsu@FreeBSD.org>1996-01-31 08:02:11 +0000
commit787baccd280b05b944c6ed4306b0c31f4fc2af30 (patch)
treefcd402dfc100145dd41ff5f7734f4e382ddd335a /include
parentc035295183261f531a61a524168153df01c04b06 (diff)
downloadFreeBSD-src-787baccd280b05b944c6ed4306b0c31f4fc2af30.zip
FreeBSD-src-787baccd280b05b944c6ed4306b0c31f4fc2af30.tar.gz
Remove unnecessary typedef. All inclusions of <rpc/auth.h> in the source
tree are preceded by an inclusion of <rpc/types.h>, so the 32-bit fixed sized type u_int32_t is already available to us.
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 33827c4..b979ffb 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];
};
OpenPOWER on IntegriCloud