Commit bd99a7dc authored by Gisle Vanem's avatar Gisle Vanem
Browse files

Fix for targets that do have 'struct in6_addr', but which doesn't

define 's6_addr' as a macro.
parent db2d52a7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -245,7 +245,7 @@ int ares_expand_name(const unsigned char *encoded, const unsigned char *abuf,
int ares_expand_string(const unsigned char *encoded, const unsigned char *abuf,
                     int alen, unsigned char **s, long *enclen);

#ifndef s6_addr
#if !defined(HAVE_STRUCT_IN6_ADDR) && !defined(s6_addr)
struct in6_addr {
  union {
    unsigned char _S6_u8[16];
+2 −2
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@
#define PF_INET6 AF_INET6
#endif

#ifndef s6_addr
#if !defined(HAVE_STRUCT_IN6_ADDR) && !defined(s6_addr)
struct in6_addr {
  union {
    unsigned char _S6_u8[16];