diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2007-07-01 10:09:12 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2007-07-01 10:09:12 +0000 |
commit | 2d28574cc2b27d7b24a004f5522c5730f328c5a1 (patch) | |
tree | b9a4d3baaaa5d88248d7023b9d5b7a4be6f5542c | |
parent | a0f886b059c5bd498ccc33d2282dd650b6a29d62 (diff) | |
download | cygnal-2d28574cc2b27d7b24a004f5522c5730f328c5a1.tar.gz cygnal-2d28574cc2b27d7b24a004f5522c5730f328c5a1.tar.bz2 cygnal-2d28574cc2b27d7b24a004f5522c5730f328c5a1.zip |
* include/ws2tcpip.h (s6_addr32): Correct definition,
Thanks to Alfred E. Heggestad <aeh at db dot org>
-rw-r--r-- | winsup/w32api/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/w32api/include/ws2tcpip.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index 969cd3ada..349d9a49d 100644 --- a/winsup/w32api/ChangeLog +++ b/winsup/w32api/ChangeLog @@ -1,3 +1,8 @@ +2007-07-01 Danny Smith <dannysmith@users.sourceforge.net> + + * include/ws2tcpip.h (s6_addr32): Correct definition. + Thanks to Alfred E. Heggestad <aeh at db dot org> + 2007-05-23 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> * lib/secur32.def (InitSecurityInterfaceA, InitSecurityInterfaceW): Define. diff --git a/winsup/w32api/include/ws2tcpip.h b/winsup/w32api/include/ws2tcpip.h index 6ae0ea50d..26f4f377c 100644 --- a/winsup/w32api/include/ws2tcpip.h +++ b/winsup/w32api/include/ws2tcpip.h @@ -173,7 +173,7 @@ struct in6_addr { /* These are GLIBC names */ #define s6_addr16 _S6_un._S6_u16 -#define s6_addr32 _S6_un._S6_u16 +#define s6_addr32 _S6_un._S6_u32 /* These are used in some MS code */ #define in_addr6 in6_addr |