mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
pullup:
64 bit alignment is only required on 64 bit machines
This commit is contained in:
parent
768d8c0ceb
commit
9432c5ee8b
1 changed files with 5 additions and 1 deletions
|
|
@ -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 */
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue