aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp
diff options
context:
space:
mode:
authorMartin Lewis <martin.lewis.x84@gmail.com>2019-05-26 14:22:44 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2019-05-26 14:24:32 +0200
commit818d9e02f2de87aef3ba72c2b3bcec6eed4ef974 (patch)
tree2a6ee75b599959635517baa0f0b78265bcceea21 /networking/udhcp
parent8b35f207bbd91a5bbca816dbdf5f8f33dd57f19d (diff)
downloadbusybox-w32-818d9e02f2de87aef3ba72c2b3bcec6eed4ef974.tar.gz
busybox-w32-818d9e02f2de87aef3ba72c2b3bcec6eed4ef974.tar.bz2
busybox-w32-818d9e02f2de87aef3ba72c2b3bcec6eed4ef974.zip
udhcpc6: Fixed aliasing compilation error
Signed-off-by: Martin Lewis <martin.lewis.x84@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/udhcp')
-rw-r--r--networking/udhcp/d6_common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/d6_common.h b/networking/udhcp/d6_common.h
index 2178cb9d6..dee2558e2 100644
--- a/networking/udhcp/d6_common.h
+++ b/networking/udhcp/d6_common.h
@@ -141,7 +141,7 @@ struct client6_data_t {
141 unsigned env_idx; 141 unsigned env_idx;
142 /* link-local IPv6 address */ 142 /* link-local IPv6 address */
143 struct in6_addr ll_ip6; 143 struct in6_addr ll_ip6;
144}; 144} FIX_ALIASING;
145 145
146#define client6_data (*(struct client6_data_t*)(&bb_common_bufsiz1[COMMON_BUFSIZE - sizeof(struct client6_data_t)])) 146#define client6_data (*(struct client6_data_t*)(&bb_common_bufsiz1[COMMON_BUFSIZE - sizeof(struct client6_data_t)]))
147 147