]> rtime.felk.cvut.cz Git - pes-rpp/rpp-lwip.git/commitdiff
bug #37585/task #12600: fixed struct in6_addr.s6_addr to conform to spec
authorSimon Goldschmidt <goldsimon@gmx.de>
Sat, 29 Jun 2013 19:16:59 +0000 (21:16 +0200)
committerSimon Goldschmidt <goldsimon@gmx.de>
Sat, 29 Jun 2013 19:16:59 +0000 (21:16 +0200)
CHANGELOG
src/include/ipv6/lwip/inet6.h

index 68954d96324667b4a1cd030907c1ee7e602a8001..1e79fa6d5943292f80ea80fb6c4192c9d7e57f23 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -80,6 +80,9 @@ HISTORY
 
  ++ Bugfixes:
 
+  2013-06-29: Simon Goldschmidt
+  * inet6.h: bug #37585/task #12600: fixed struct in6_addr.s6_addr to conform to spec
+
   2013-04-24: patch by Liam <morepork>
   * api_msg.c: patch #8008 Fix a potential null pointer dereference in assert
 
index dbf98df01ca04a82417b69616b317f06b93bee8d..8359521b5a1e5457d0de0752e984fa86746ad757 100644 (file)
@@ -58,7 +58,7 @@ struct in6_addr {
     u8_t  u8_addr[16];
     u32_t u32_addr[4];
   } un;
-#define s6_addr  un.u32_addr
+#define s6_addr  un.u8_addr
 };
 
 #define IN6ADDR_ANY_INIT {0,0,0,0}