From 9432c5ee8bbb5ab60b15d478dae7877e1f5ed5a4 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Mon, 25 Jun 2001 00:30:46 +0000 Subject: [PATCH] pullup: 64 bit alignment is only required on 64 bit machines --- lib/bind/include/resolv.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/bind/include/resolv.h b/lib/bind/include/resolv.h index 06025f5d1f..4bf0ccf3e1 100644 --- a/lib/bind/include/resolv.h +++ b/lib/bind/include/resolv.h @@ -50,7 +50,7 @@ /* * @(#)resolv.h 8.1 (Berkeley) 6/2/93 - * $Id: resolv.h,v 1.6 2001/06/21 08:26:01 marka Exp $ + * $Id: resolv.h,v 1.7 2001/06/25 00:30:46 marka Exp $ */ #ifndef _RESOLV_H_ @@ -195,7 +195,11 @@ union res_sockaddr_union { #ifdef IN6ADDR_ANY_INIT struct sockaddr_in6 sin6; #endif +#ifdef ISC_ALIGN64 int64_t __align; /* 64bit alignment */ +#else + int32_t __align; /* 32bit alignment */ +#endif char __space[128]; /* max size */ };