From 24c7f4c14bc1fa62e9599c3acc98cf76c2bef8be Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 23 Aug 2000 07:15:54 +0000 Subject: [PATCH] Update. 2000-08-23 Jakub Jelinek * inet/netinet/in.h (struct in6_addr): Don't enforce 64bit alignment on 64bit arches. --- ChangeLog | 5 +++++ inet/netinet/in.h | 4 ---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index b1775e2..96ee1b7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-08-23 Jakub Jelinek + + * inet/netinet/in.h (struct in6_addr): Don't enforce 64bit alignment + on 64bit arches. + 2000-08-22 Ulrich Drepper * iconvdata/iso-2022-jp.c: In conversion to ISO-2022-JP, add two diff --git a/inet/netinet/in.h b/inet/netinet/in.h index 4fd64d7..1857c19 100644 --- a/inet/netinet/in.h +++ b/inet/netinet/in.h @@ -171,14 +171,10 @@ struct in6_addr uint8_t u6_addr8[16]; uint16_t u6_addr16[8]; uint32_t u6_addr32[4]; -#if ULONG_MAX > 0xffffffff - uint64_t u6_addr64[2]; -#endif } in6_u; #define s6_addr in6_u.u6_addr8 #define s6_addr16 in6_u.u6_addr16 #define s6_addr32 in6_u.u6_addr32 -#define s6_addr64 in6_u.u6_addr64 }; extern const struct in6_addr in6addr_any; /* :: */ -- 2.7.4